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

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