Page 1 of 1

cstpolyline

Posted: 03 Nov 2016, 13:41
by agvs
Hi,
I tried to draw polyline as xml(cstPolyline).
But, the polyline didn't work(drawn).
What's a problem with my source?
Let me know, please
Below is my source.
<?xml version="1.0" encoding="utf-8"?>
<cadsofttools version="2">
<add>
<cstPolyline point="0,0,0" Color="0;1;"/>
<cstPolyline point="1,1,0" Color="0;1;"/>
<cstPolyline point="2,2,0" Color="0;1;"/>
<cstPolyline point="3,3,0" Color="0;1;"/>
</add>
<FitToSize/>
</cadsofttools>

Re: cstpolyline

Posted: 03 Nov 2016, 18:43
by support
Hello,

cstPolyline is defined by vertexes (cstVertex), not by a single 3D point. Please modify your XML code as follows.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<cadsofttools version="2">
    <add>
    <cstPolyline Color="0;1;">
        <SubEntities>
            <cstVertex Point="0,0,0"/>
            <cstVertex Point="1,1,0"/>
            <cstVertex Point="2,2,0"/>
            <cstVertex Point="3,3,0"/> 
        </SubEntities>
    </cstPolyline> 
    </add>                     
    <FitToSize/>
</cadsofttools>
Mikhail