private void OnCloneComplete()
        {
            _arc = CollectionUtils.SelectFirst(base.Graphics,
                                               delegate(IGraphic test) { return(test is InvariantArcPrimitive); }) as InvariantArcPrimitive;

            Platform.CheckForNullReference(_arc, "_arc");
        }
Exemple #2
0
		public ProtractorGraphic() : base()
		{
			base.Graphics.Add(_arc = new InvariantArcPrimitive());
			_arc.Visible = false;
		}
Exemple #3
0
		private void OnCloneComplete()
		{
			_arc = CollectionUtils.SelectFirst(base.Graphics,
				delegate(IGraphic test) { return test is InvariantArcPrimitive; }) as InvariantArcPrimitive;

			Platform.CheckForNullReference(_arc, "_arc");
		}
 public ProtractorGraphic() : base()
 {
     base.Graphics.Add(_arc = new InvariantArcPrimitive());
     _arc.Visible           = false;
 }