Example #1
0
        public TopoEndPoint(XYZ3 xyz)
        {
            if (!xyz.IsValid)
            {
                throw new ArgumentException("Invalid End Point");
            }

            base.index        = -1;
            base.point        = xyz;
            base.controlPoint = true;
        }
Example #2
0
        public TopoPoint3(XYZ3 xyz)
        {
            point = xyz;

            point.PropertyChanged += PointPropertyChanged;
        }