Beispiel #1
0
 private XPolyStar(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #2
0
 private XPolyPulse(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #3
0
 private XCircle(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #4
0
 private XCircle(XShape shape, Vector2 center)
 {
     CopyData(shape);
     Center = center;
 }
Beispiel #5
0
 internal XRoundedRectangle(XShape shape, Vector2 p)
 {
     CopyData(shape);
     Center = p;
 }
Beispiel #6
0
 private XPolyWave(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #7
0
 private XRectangle(XShape shape, Vector2 p)
 {
     CopyData(shape);
     Center = p;
 }
Beispiel #8
0
 private XLine(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #9
0
 private XPolySpike(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #10
0
 private XRectangle(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #11
0
 private XEllipes(XShape shape, Vector2 center)
 {
     CopyData(shape);
     Center = center;
 }
Beispiel #12
0
 private XEllipes(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #13
0
 private XLine(XShape shape, Vector2 p)
 {
     CopyData(shape);
     SetCenter(p);
 }
Beispiel #14
0
 private XPolySide(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #15
0
 internal XRoundedRectangle(XShape shape)
 {
     CopyData(shape);
 }
Beispiel #16
0
 private XPolySide(XShape shape, Vector2 p)
 {
     CopyData(shape);
     SetCenter(p);
 }
Beispiel #17
0
 private XPolySpring(XShape shape)
 {
     CopyData(shape);
 }