I am wanting to write a string to a GraphicsPath object in c# like below
'
path = new GraphicsPath();
path.AddString("Hello World", FontFamily.GenericSansSerif, 1, 80, new Point(0, 0), StringFormat.GenericDefault);
'
But I then want to take the generated path and write it to a 3d file in this case Sketchup.
Do not worry about sketchup, I just need to work out the meaning of the path.PathTypes which are a byte[] but there is no meaning for it in the documentation at
The documentation states the following rather useless descripion
An array of bytes that specify the types of the corresponding points in the path.
But there is no description of the byte or bit meanings.
Does anyone know the real breakdown of each byte?
When I render the data points without any interpretation of the meaning of the bytes in the PathTypes variable I get the following.