コード例 #1
0
ファイル: Cylindrical.cs プロジェクト: hamlertools/OTWB
 public Cylindrical(Cylindrical cc)
     : this(cc.Radius, cc.Angle, cc.Depth)
 {
 }
コード例 #2
0
ファイル: Spherical.cs プロジェクト: hamlertools/OTWB
 public Spherical(Cylindrical c)
     : this(c.toCartesian3)
 {
 }
コード例 #3
0
ファイル: Cylindrical.cs プロジェクト: hamlertools/OTWB
        public bool Equals(ICoordinate c)
        {
            Cylindrical cc = c.toCylindrical;

            return(cc.Radius == Radius && cc.Angle == Angle && cc.Depth == Depth);
        }
コード例 #4
0
ファイル: Cylindrical.cs プロジェクト: hamlertools/OTWB
 public bool Equal(Cylindrical p)
 {
     return((p.Radius == Radius) && (p.Angle == Angle) && (p.Depth == Depth));
 }
コード例 #5
0
ファイル: Cylindrical.cs プロジェクト: dolkensp/OTWB
		public Cylindrical(Cylindrical cc)
			: this (cc.Radius,cc.Angle,cc.Depth){}
コード例 #6
0
ファイル: Cylindrical.cs プロジェクト: dolkensp/OTWB
		public bool Equal(Cylindrical p)
		{
			return ((p.Radius == Radius) && (p.Angle  == Angle) && (p.Depth == Depth));
		}
コード例 #7
0
ファイル: Spherical.cs プロジェクト: dolkensp/OTWB
		public Spherical(Cylindrical c)
			: this (c.toCartesian3){}