Beispiel #1
0
 public SplintContour(double Length, double Alpha, double Phi, SplintContourType Type)
 {
     l = Length;
     alpha = Alpha;
     phi = Phi;
     type = Type;
 }
Beispiel #2
0
 public SplintComponent(dsSplints dsSplints, dsLines dsLines, int ComponentId,
     SplintContourType StartType, double Value, int Numer, int LineId)
 {
     this.dsLines = dsLines;
     this.dsSplints = dsSplints;
     this.ComponentId = ComponentId;
     starttype = StartType;
     value = Value;
     numer = Numer;
     this.LineId = LineId;
 }
Beispiel #3
0
 public static SplintContourType ReverseSplintContourType(SplintContourType SplintContourType)
 {
     return (SplintContourType)(-(int)SplintContourType);
 }
Beispiel #4
0
 public SplintArcContour(double Length, double Alpha, double Phi, SplintContourType Type)
     : base(Length, Alpha, Phi, Type)
 {
 }
 public SplintLineContour(double Length, double Phi, SplintContourType Type)
     : base(Length, 0, Phi, Type)
 {
 }
Beispiel #6
0
 public Enumerator(dsSplints dsSplints, int ComponentId, SplintContourType StartType, double Value)
 {
     this.dsSplints = dsSplints;
     this.StartType = StartType;
     this.ComponentId = ComponentId;
     this.Value = Value;
     Index = -1;
 }