Esempio n. 1
0
            private static MDesign_Shape MDesign_Shape(ShapeNode shapeNode)
            {
                var result = new MDesign_Shape()
                {
                    Path  = MDesign_Path(shapeNode.Path),
                    Color = MDesign_Color(shapeNode.FabricStyle.Color)
                };

                return(result);
            }
Esempio n. 2
0
            private static XDesign_Shape XDesign_Shape(MDesign_Shape mShape)
            {
                var result = new XDesign_Shape()
                {
                    path  = XDesign_Path(mShape.Path),
                    color = XDesign_Color(mShape.Color)
                };

                return(result);
            }