コード例 #1
0
ファイル: Sphere.cs プロジェクト: dom767/woofractal
 public void CreateElement(bool preview, XElement parent)
 {
     parent.Add(new XElement("OBJECT",
                             new XAttribute("type", 0),
                             new XAttribute("position", _Position),
                             new XAttribute("scale", _Scale),
                             new XAttribute("rotation", _Rotation),
                             new XAttribute("ignoreWhileLighting", _IgnoreLighting),
                             _Material.CreateElement(preview)));
 }
コード例 #2
0
        public void CreateElement(XElement parent)
        {
            XElement ret;

            ret = new XElement("GRADIENTSEGMENT",
                               _StartColour.CreateElement("STARTCOLOUR", false),
                               _EndColour.CreateElement("ENDCOLOUR", false),
                               new XAttribute("startX", _StartX),
                               new XAttribute("endX", _EndX));

            parent.Add(ret);
        }