コード例 #1
0
 public void SetTransformation(gpAx3 ToSystem)
 {
     gp_Trsf_SetTransformation1B3CAD05(Instance, ToSystem.Instance);
 }
コード例 #2
0
 public void SetDisplacement(gpAx3 FromSystem1, gpAx3 ToSystem2)
 {
     gp_Trsf_SetDisplacementB5D8FD04(Instance, FromSystem1.Instance, ToSystem2.Instance);
 }
コード例 #3
0
 public void SetTransformation(gpAx3 FromSystem1, gpAx3 ToSystem2)
 {
     gp_Trsf_SetTransformationB5D8FD04(Instance, FromSystem1.Instance, ToSystem2.Instance);
 }
コード例 #4
0
 public gpCylinder(gpAx3 A3, double Radius)
     :
     base(gp_Cylinder_Ctor5C6D1CB8(A3.Instance, Radius))
 {
 }
コード例 #5
0
 public gpPln(gpAx3 A3)
     :
     base(gp_Pln_Ctor1B3CAD05(A3.Instance))
 {
 }
コード例 #6
0
 public gpCone(gpAx3 A3, double Ang, double Radius)
     :
     base(gp_Cone_Ctor32BF0691(A3.Instance, Ang, Radius))
 {
 }
コード例 #7
0
 public bool IsCoplanar(gpAx3 Other, double LinearTolerance, double AngularTolerance)
 {
     return(gp_Ax3_IsCoplanar32BF0691(Instance, Other.Instance, LinearTolerance, AngularTolerance));
 }
コード例 #8
0
 public double Angle(gpAx3 Other)
 {
     return(gp_Ax3_Angle1B3CAD05(Instance, Other.Instance));
 }
コード例 #9
0
 public gpSphere(gpAx3 A3, double Radius)
     :
     base(gp_Sphere_Ctor5C6D1CB8(A3.Instance, Radius))
 {
 }
コード例 #10
0
 public gpTorus(gpAx3 A3, double MajorRadius, double MinorRadius)
     :
     base(gp_Torus_Ctor32BF0691(A3.Instance, MajorRadius, MinorRadius))
 {
 }