Esempio n. 1
0
 public SheetCamera()
 {
     TopLeft = new Point();
     BottomRight = new Point();
 }
Esempio n. 2
0
 public static XYZ GetRevitXYZ(Point d)
 {
     return(new XYZ(d.X.ToFeet(), d.Y.ToFeet(), d.Z.ToFeet()));
 }
Esempio n. 3
0
 public OrthogonalCamera()
 {
   CameraDirection = new Direction();
   CameraUpVector = new Direction();
   CameraViewPoint = new Point();
 }
Esempio n. 4
0
 public PerspectiveCamera()
 {
   CameraDirection = new Direction();
   CameraUpVector = new Direction();
   CameraViewPoint = new Point();
 }
Esempio n. 5
0
 public static Point3D GetNavisXYZ(Point d)
 {
     return(new Point3D(d.X.ToInternal(), d.Y.ToInternal(), d.Z.ToInternal()));
 }
Esempio n. 6
0
 public static Point3D GetNavisXYZ(Point d)
 {
   return new Point3D(d.X.ToInternal(), d.Y.ToInternal(), d.Z.ToInternal());
 }
Esempio n. 7
0
 public static XYZ GetRevitXYZ(Point d)
 {
   return new XYZ(d.X.ToFeet(), d.Y.ToFeet(), d.Z.ToFeet());
 }