當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Vec2.Assign方法代碼示例

本文整理匯總了Golang中github.com/runningwild/mathgl.Vec2.Assign方法的典型用法代碼示例。如果您正苦於以下問題:Golang Vec2.Assign方法的具體用法?Golang Vec2.Assign怎麽用?Golang Vec2.Assign使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/runningwild/mathgl.Vec2的用法示例。


在下文中一共展示了Vec2.Assign方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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
}
開發者ID:RickDakan,項目名稱:haunts,代碼行數:28,代碼來源:entity.go

示例2: TurnToFace

func (e *Entity) TurnToFace(x, y int) {
	target := mathgl.Vec2{float32(x), float32(y)}
	source := mathgl.Vec2{float32(e.X), float32(e.Y)}
	var seg mathgl.Vec2
	seg.Assign(&target)
	seg.Subtract(&source)
	target_facing := facing(seg)
	f_diff := target_facing - e.sprite.sp.StateFacing()
	if f_diff != 0 {
		f_diff = (f_diff + 6) % 6
		if f_diff > 3 {
			f_diff -= 6
		}
		for f_diff < 0 {
			e.sprite.sp.Command("turn_left")
			f_diff++
		}
		for f_diff > 0 {
			e.sprite.sp.Command("turn_right")
			f_diff--
		}
	}
}
開發者ID:RickDakan,項目名稱:haunts,代碼行數:23,代碼來源:entity.go


注:本文中的github.com/runningwild/mathgl.Vec2.Assign方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。