Hello,
I've following xml element:
<point X="-1368.087158" Y="-918.482910" Z="156.191040" nX="0.241530" nY="-0.945819" nZ="0.217001"/>
and following object structure:
public class Point
{
[XmlAttribute("X")]
public float X { get; set; }
[XmlAttribute("Y")]
public float Y { get; set; }
[XmlAttribute("Z")]
public float Z { get; set; }
}
public class Vertex: Point
{
[Xml...]
public Point Normal { get; set; }
}
How can I serialize nX/nY/nZ?