Ejemplo n.º 1
0
		public LineShape(LineShape from)
			: base(from) // all is done here, since CopyFrom is virtual!
		{
		}
Ejemplo n.º 2
0
			public LineShapeHitTestObject(LineShape parent, Matrix4x3 localToWorldTransformation)
				: base(parent, localToWorldTransformation)
			{
			}
Ejemplo n.º 3
0
 public LineShapeHitTestObject(LineShape parent, Matrix4x3 localToWorldTransformation)
     : base(parent, localToWorldTransformation)
 {
 }
Ejemplo n.º 4
0
 public LineShape(LineShape from)
     : base(from) // all is done here, since CopyFrom is virtual!
 {
 }
Ejemplo n.º 5
0
		protected virtual void FinishDrawing()
		{
			LineShape go = new LineShape(_Points[0], _Points[1], _grac.Doc.GetPropertyContext());

			// deselect the text tool
			_grac.SetGraphToolFromInternal(GraphToolType.ObjectPointer);
			_grac.ActiveLayer.GraphObjects.Add(go);
		}