public ClientText(string text, ClientPoint location, double height, double rotationAngle, CadColor?color) { Text = text; Location = location; Height = height; RotationAngle = rotationAngle; Color = color; }
public ClientRectangle(ClientPoint topLeft, ClientPoint bottomRight) { TopLeft = topLeft; BottomRight = bottomRight; }
public ClientLine(ClientPoint p1, ClientPoint p2, CadColor?color) { P1 = p1; P2 = p2; Color = color; }
public ClientPointLocation(ClientPoint location, CadColor?color) { Location = location; Color = color; }