Наследование: ImplicitModuleBase
Пример #1
0
 public ImplicitRotateDomain(ImplicitModuleBase source, double x, double y, double z, double angle)
 {
     Source = source;
     X      = new ImplicitConstant(x);
     Y      = new ImplicitConstant(y);
     Z      = new ImplicitConstant(z);
     Angle  = new ImplicitConstant(angle);
 }
Пример #2
0
 public ImplicitSphere(
     double xCenter = 0.00, double yCenter = 0.00, double zCenter = 0.00,
     double wCenter = 0.00, double uCenter = 0.00, double vCenter = 0.00,
     double radius  = 1.00)
 {
     XCenter = new ImplicitConstant(xCenter);
     YCenter = new ImplicitConstant(yCenter);
     ZCenter = new ImplicitConstant(zCenter);
     WCenter = new ImplicitConstant(wCenter);
     UCenter = new ImplicitConstant(uCenter);
     VCenter = new ImplicitConstant(vCenter);
     Radius  = new ImplicitConstant(radius);
 }
Пример #3
0
 public void SetAxis(double x, double y, double z)
 {
     X = new ImplicitConstant(x);
     Y = new ImplicitConstant(y);
     Z = new ImplicitConstant(z);
 }
 public ImplicitPow(ImplicitModuleBase source, double power)
 {
     Source = source;
     Power  = new ImplicitConstant(power);
 }