Beispiel #1
0
 public static NuGenPnt2F Max(NuGenPnt2F a, NuGenPnt2F b)
 {
     return(new NuGenPnt2F(
                Math.Max(a._x[0], b._x[0]),
                Math.Max(a._x[1], b._x[1])
                ));
 }
Beispiel #2
0
        public override bool Equals(object obj)
        {
            NuGenPnt2F x = (NuGenPnt2F)obj;

            return(
                _x[0] == x._x[0] &&
                _x[1] == x._x[1]
                );
        }
Beispiel #3
0
		public NuGenRay2F(NuGenPnt2F p, NuGenVec2F v)
		{
			this.p = p;
			this.v = v;
		}
Beispiel #4
0
 public bool IsOnBorder(NuGenPnt2F p)
 {
     return(IsInsideOrOnBorder(p) && !IsInside(p));
 }
Beispiel #5
0
 public static NuGenBox2F operator+(NuGenBox2F b, NuGenBox2F c)
 {
     return(new NuGenBox2F(NuGenPnt2F.Min(b.lower, c.lower), NuGenPnt2F.Max(b.upper, c.upper)));
 }
Beispiel #6
0
 public NuGenBox2F(NuGenPnt2F lower, NuGenPnt2F upper)
 {
     this.lower = lower;
     this.upper = upper;
 }
Beispiel #7
0
 public bool IsInsideOrOnBorder(NuGenPnt2F p)
 {
     return(lower <= p && upper >= p);
 }
Beispiel #8
0
 public NuGenRay2F(NuGenPnt2F p, NuGenVec2F v)
 {
     this.p = p;
     this.v = v;
 }
Beispiel #9
0
 public bool IsInside(NuGenPnt2F p)
 {
     return(lower < p && upper > p);
 }
Beispiel #10
0
		public static bool ApproxEquals(NuGenPnt2F a, NuGenPnt2F b)
		{
			return
				Math.Abs(a._x[0] - b._x[0]) < NuGenVector.TINY_FLOAT &&
				Math.Abs(a._x[1] - b._x[1]) < NuGenVector.TINY_FLOAT;
		}
Beispiel #11
0
		public static NuGenPnt2F Max(NuGenPnt2F a, NuGenPnt2F b)
		{
			return new NuGenPnt2F(
				Math.Max(a._x[0], b._x[0]),
				Math.Max(a._x[1], b._x[1])
				);
		}
Beispiel #12
0
 public static bool ApproxEquals(NuGenPnt2F a, NuGenPnt2F b)
 {
     return
         (Math.Abs(a._x[0] - b._x[0]) < NuGenVector.TINY_FLOAT &&
          Math.Abs(a._x[1] - b._x[1]) < NuGenVector.TINY_FLOAT);
 }
Beispiel #13
0
		public NuGenBox2F(NuGenPnt2F lower, NuGenPnt2F upper)
		{
			this.lower = lower;
			this.upper = upper;
		}
Beispiel #14
0
		public bool IsOnBorder(NuGenPnt2F p)
		{
			return IsInsideOrOnBorder(p) && !IsInside(p);
		}
Beispiel #15
0
		public bool IsInsideOrOnBorder(NuGenPnt2F p)
		{
			return lower <= p && upper >= p;
		}
Beispiel #16
0
		public bool IsInside(NuGenPnt2F p)
		{
			return lower < p && upper > p;
		}