Esempio n. 1
0
        // This copies all properties to another thing
        public void CopyPropertiesTo(Vertex v)
        {
            v.BeforePropsChange();

            // Copy properties
            v.pos = pos;
            base.CopyPropertiesTo(v);
        }
Esempio n. 2
0
        // This copies all properties to another thing
        public void CopyPropertiesTo(Vertex v)
        {
            v.BeforePropsChange();

            // Copy properties
            v.pos      = pos;
            v.zceiling = zceiling;         //mxd
            v.zfloor   = zfloor;           //mxd
            base.CopyPropertiesTo(v);
        }