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


C# Vector2f.Equals方法代码示例

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


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

示例1: On

		public bool On(Vector2f point) {
			GetClosestPoint(point, closest);
	
			return point.Equals(closest);
		}
开发者ID:207h2Flogintvg,项目名称:LGame,代码行数:5,代码来源:Line.cs

示例2: Calc

 private List<Vector2f> Calc(Field2D field_0, Vector2f start,
         Vector2f goal_1, bool flag_2)
 {
     if (start.Equals(goal_1))
     {
         List<Vector2f> v = new List<Vector2f>();
         CollectionUtils.Add(v, start);
         return v;
     }
     this.goal = goal_1;
     if (visitedCache == null)
     {
         visitedCache = new HashedSet();
     }
     else
     {
         CollectionUtils.Clear(visitedCache);
     }
     if (pathes == null)
     {
         pathes = new List<ScoredPath>();
     }
     else
     {
         CollectionUtils.Clear(pathes);
     }
     CollectionUtils.Add(visitedCache, start);
     if (path == null)
     {
         path = new List<Vector2f>();
     }
     else
     {
         CollectionUtils.Clear(path);
     }
     CollectionUtils.Add(path, start);
     if (spath == null)
     {
         spath = new AStarFinder.ScoredPath(0, path);
     }
     else
     {
         spath.score = 0;
         spath.path = path;
     }
     CollectionUtils.Add(pathes, spath);
     return Astar(field_0, flag_2);
 }
开发者ID:wethinkall,项目名称:LGame,代码行数:48,代码来源:AStarFinder.cs

示例3: Calc

 private List<Vector2f> Calc(Field2D field, Vector2f start,
         Vector2f goal, bool flag)
 {
     if (start.Equals(goal))
     {
         List<Vector2f> v = new List<Vector2f>();
         v.Add(start);
         return v;
     }
     this.goal = goal;
     if (visitedCache == null)
     {
         visitedCache = new HashedSet();
     }
     else
     {
         visitedCache.Clear();
     }
     if (pathes == null)
     {
         pathes = new List<ScoredPath>();
     }
     else
     {
         pathes.Clear();
     }
     visitedCache.Add(start);
     if (path == null)
     {
         path = new List<Vector2f>();
     }
     else
     {
         path.Clear();
     }
     path.Add(start);
     if (spath == null)
     {
         spath = new ScoredPath(0, path);
     }
     else
     {
         spath.score = 0;
         spath.path = path;
     }
     pathes.Add(spath);
     return Astar(field, flag);
 }
开发者ID:keppelcao,项目名称:LGame,代码行数:48,代码来源:AStarFinder.cs


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