Beispiel #1
0
 public RotateRingController(ILockableController parent, Vector4 color, Vector4 overlayColor, SilinderShapeDescription desc)
     : base(color, overlayColor, desc)
 {
     _dragController = new DragControlManager(parent);
 }
Beispiel #2
0
 public オーバーレイシリンダーシェイプ(Vector4 color, Vector4 overlayColor, SilinderShapeDescription desc)
     : base(color, desc)
 {
     baseColor     = color;
     _overlayColor = overlayColor;
 }
 public OverlaySilinderShape(RenderContext context, Vector4 color, Vector4 overlayColor, SilinderShapeDescription desc) : base(context, color, desc)
 {
     baseColor     = color;
     _overlayColor = overlayColor;
 }
Beispiel #4
0
 public SilinderShape(RenderContext context, Vector4 color, SilinderShapeDescription desc) : base(context, color)
 {
     this._desc = desc;
 }
Beispiel #5
0
 public シリンダーシェイプ(Vector4 color, SilinderShapeDescription desc)
     : base(color)
 {
     _desc = desc;
 }