657
edits
m (→Meshing Octave) |
m (→Meshing Octave) |
||
Line 20: | Line 20: | ||
<!-- <syntaxhighlight lang="matlab"> --> | <!-- <syntaxhighlight lang="matlab"> --> | ||
{{Code|Loading the file as polygon compatible with geometry package| | {{Code|Loading the file as polygon compatible with geometry package|{{SyntaxHighlight| | ||
octavesvg = svg ("octave.svg").normalize(); | |||
ids = octavesvg.pathid(); | |||
P = octavesvg.path2polygon (ids{1}, 12)(1:end-1,:); | |||
P = bsxfun (@minus, P, centroid (P)); | |||
}} | |||
}} | }} | ||
Now we have our SVG as a polygon compatible with the Geometry package format. You can plot the polygon using the function {{Codeline|drawPolygon}}. | Now we have our SVG as a polygon compatible with the Geometry package format. You can plot the polygon using the function {{Codeline|drawPolygon}}. |
edits