Example #1
0
    public static IdPath From(string str)
    {
        var result = new IdPath();

        result.Parse(str);
        return(result);
    }
Example #2
0
 protected override void OnReadMeshFeature(XmlNode xml)
 {
     angle.value   = xml.Attributes["angle"].Value.ToDouble();
     step.value    = xml.Attributes["step"].Value.ToDouble();
     meshAngleStep = xml.Attributes["meshAngleStep"].Value.ToDouble();
     axisId.Parse(xml.Attributes["axis"].Value);
     originId.Parse(xml.Attributes["origin"].Value);
     angleFixed = Convert.ToBoolean(xml.Attributes["angleFixed"].Value);
     stepFixed  = Convert.ToBoolean(xml.Attributes["stepFixed"].Value);
 }