当前位置: 首页>>代码示例>>C#>>正文


C# Vector2f.Add方法代码示例

本文整理汇总了C#中Loon.Core.Geom.Vector2f.Add方法的典型用法代码示例。如果您正苦于以下问题:C# Vector2f.Add方法的具体用法?C# Vector2f.Add怎么用?C# Vector2f.Add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Loon.Core.Geom.Vector2f的用法示例。


在下文中一共展示了Vector2f.Add方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetVelocity

		public static Vector2f GetVelocity(Vector2f velocity, Vector2f force,
				float mass) {
			Vector2f acceleration = new Vector2f(force.GetX() / mass, force.GetY()
					/ mass);
			velocity.Add(acceleration);
			return velocity;
		}
开发者ID:207h2Flogintvg,项目名称:LGame,代码行数:7,代码来源:Speed.cs

示例2: GetVelocity

 public static Vector2f GetVelocity(Vector2f velocity, List<Vector2f> forces)
 {
     foreach (Vector2f v in forces)
     {
         velocity.Add(v);
     }
     return velocity;
 }
开发者ID:hellogithubtesting,项目名称:LGame,代码行数:8,代码来源:Speed.cs

示例3: Intersects

		public bool Intersects(Line other) {
			Vector2f lineSegmentStart = new Vector2f(other.GetX1(), other.GetY1());
			Vector2f lineSegmentEnd = new Vector2f(other.GetX2(), other.GetY2());
			Vector2f circleCenter = new Vector2f(GetCenterX(), GetCenterY());
			Vector2f closest;
			Vector2f segv = lineSegmentEnd.Sub(lineSegmentStart);
			Vector2f ptv = circleCenter.Sub(lineSegmentStart);
			float segvLength = segv.Len();
			float projvl = ptv.Dot(segv) / segvLength;
			if (projvl < 0) {
				closest = lineSegmentStart;
			} else if (projvl > segvLength) {
				closest = lineSegmentEnd;
			} else {
				Vector2f projv = segv.Mul(projvl / segvLength);
				closest = lineSegmentStart.Add(projv);
			}
			bool intersects = circleCenter.Sub(closest).LengthSquared() <= GetRadius()
					* GetRadius();
			return intersects;
		}
开发者ID:keppelcao,项目名称:LGame,代码行数:21,代码来源:Circle.cs

示例4: Sum

		public static Vector2f Sum(Vector2f a, Vector2f b) {
			Vector2f answer = new Vector2f(a);
			return answer.Add(b);
		}
开发者ID:keppelcao,项目名称:LGame,代码行数:4,代码来源:Vector2f.cs

示例5: Sum

 public static Vector2f Sum(IList<Vector2f> summands)
 {
     Vector2f result = new Vector2f(0, 0);
     for (IEnumerator<Vector2f> it = summands.GetEnumerator(); it.MoveNext(); )
     {
         Vector2f v = it.Current;
         result.Add(v);
     }
     return result;
 }
开发者ID:hellogithubtesting,项目名称:LGame,代码行数:10,代码来源:Vector2f.cs


注:本文中的Loon.Core.Geom.Vector2f.Add方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。