/// <summary> /// Constructs a connector, passing its location /// </summary> /// <param name="p"></param> public Connector(Point p) { attachedConnectors = new ConnectorCollection(); point = p; }
/// <summary> /// Default connector /// </summary> public Connector() { attachedConnectors = new ConnectorCollection(); }