本文整理匯總了Golang中github.com/runningwild/mathgl.Vec2.Length方法的典型用法代碼示例。如果您正苦於以下問題:Golang Vec2.Length方法的具體用法?Golang Vec2.Length怎麽用?Golang Vec2.Length使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/runningwild/mathgl.Vec2
的用法示例。
在下文中一共展示了Vec2.Length方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: DoAdvance
// Advances ent up to dist towards the target cell. Returns the distance
// traveled.
func (e *Entity) DoAdvance(dist float32, x, y int) float32 {
if dist <= 0 {
e.sprite.sp.Command("stop")
return 0
}
e.sprite.sp.Command("move")
source := mathgl.Vec2{float32(e.X), float32(e.Y)}
target := mathgl.Vec2{float32(x), float32(y)}
var seg mathgl.Vec2
seg.Assign(&target)
seg.Subtract(&source)
e.TurnToFace(x, y)
var traveled float32
if seg.Length() > dist {
seg.Scale(dist / seg.Length())
traveled = dist
} else {
traveled = seg.Length()
}
seg.Add(&source)
e.X = float64(seg.X)
e.Y = float64(seg.Y)
return dist - traveled
}