예제 #1
0
파일: LineShape.cs 프로젝트: Altaxo/Altaxo
		public LineShape(LineShape from)
			: base(from) // all is done here, since CopyFrom is virtual!
		{
		}
예제 #2
0
파일: LineShape.cs 프로젝트: Altaxo/Altaxo
			public LineShapeHitTestObject(LineShape parent, Matrix4x3 localToWorldTransformation)
				: base(parent, localToWorldTransformation)
			{
			}
예제 #3
0
 public LineShapeHitTestObject(LineShape parent, Matrix4x3 localToWorldTransformation)
     : base(parent, localToWorldTransformation)
 {
 }
예제 #4
0
 public LineShape(LineShape from)
     : base(from) // all is done here, since CopyFrom is virtual!
 {
 }
		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);
		}