コード例 #1
0
 public BodiceMaker(Vector2 start, Measurements measurements, float neckLengthRequired, BodiceType bodiceType)
     : base(measurements)
 {
     BuildPart(start);
     this.neckLengthRequired = neckLengthRequired;
     this.bodiceType         = bodiceType;
 }
コード例 #2
0
ファイル: BodicePart.cs プロジェクト: vicente-da-silva/YCYR
 public BodicePart(float curvinessFactor, float neckBezierLength, float sleeveBezierLength, BodiceType bodiceType, Measurements measurements)
     : base(measurements)
 {
     this.curvinessFactor    = curvinessFactor;
     this.neckBezierLength   = neckBezierLength;
     this.sleeveBezierLength = sleeveBezierLength;
     this.bodiceType         = bodiceType;
 }