Beispiel #1
0
 public Cylindrical(Cylindrical cc)
     : this(cc.Radius, cc.Angle, cc.Depth)
 {
 }
Beispiel #2
0
 public Spherical(Cylindrical c)
     : this(c.toCartesian3)
 {
 }
Beispiel #3
0
        public bool Equals(ICoordinate c)
        {
            Cylindrical cc = c.toCylindrical;

            return(cc.Radius == Radius && cc.Angle == Angle && cc.Depth == Depth);
        }
Beispiel #4
0
 public bool Equal(Cylindrical p)
 {
     return((p.Radius == Radius) && (p.Angle == Angle) && (p.Depth == Depth));
 }
Beispiel #5
0
		public Cylindrical(Cylindrical cc)
			: this (cc.Radius,cc.Angle,cc.Depth){}
Beispiel #6
0
		public bool Equal(Cylindrical p)
		{
			return ((p.Radius == Radius) && (p.Angle  == Angle) && (p.Depth == Depth));
		}
Beispiel #7
0
		public Spherical(Cylindrical c)
			: this (c.toCartesian3){}