示例#1
0
文件: Rectangle.cs 项目: iayucar/PANG

        
示例#2
0
 internal static bool UVsAreApproxEqual(Maths.Vector2 lhs, Maths.Vector2 rhs)
 {
     return
         (FloatsAreApproxEqual(lhs.X, rhs.X, uvElementTolerance) &&
          FloatsAreApproxEqual(lhs.Y, rhs.Y, uvElementTolerance));
 }