用 Go 语言计算顶点的绝对值和比例。


示例

Abs(x, y) => √(x)2+(y)2

Scale(f) => (x*f, y*f)

方法

  • 将顶点定义为一个结构体。

  • 使用一些x和值初始化顶点。

  • 定义一个方法来计算绝对值(x, y)

  • 定义一个方法来计算比例(x*f, y*f)

示例

 在线演示

package main
import (
   "fmt"
   "math"
)
type Vertex struct {
   X, Y float64
}
func Abs(v Vertex) float64{
   return math.Sqrt(v.X*v.X + v.Y*v.Y)
}
func Scale(v *Vertex, f float64) {
   v.X = v.X * f
   v.Y = v.Y * f
}
func main() {
   v := Vertex{3, 4}
   fmt.Println("Given vertex is: ", v)
   fmt.Println("Absolute value of given vertex is: ", Abs(v))
   f := 10.0
   fmt.Printf("After scaling by %0.1f new vertex is: ", f)
   Scale(&v, f)
   fmt.Println(v)
   fmt.Println("Absolute value of given vertex is: ", Abs(v))
}

输出

Given vertex is: {3 4}
Absolute value of given vertex is: 5
After scaling by 10.0 new vertex is: {30 40}
Absolute value of given vertex is: 50

更新于: 2021 年 3 月 18 日

198 次浏览

开启你的 职业生涯职业生涯

通过完成课程获得认证

开始使用
广告
© . All rights reserved.