ctrl+z
will undo your last change(s)ctrl+o
will load SVG-code from a filectrl+s
will download your SVG as a fileSVG
-codingObject | Example | Code | Info |
---|---|---|---|
Circle | <circle cx="100" cy="100" r="30" fill="red" /> |
||
Ellipse | <ellipse cx="100" cy="50" rx="60" ry="30" fill="green"/> |
||
Rectangle | <rect x="50" y="50" width="100" height="75" fill="#FF0" stroke="#000" stroke-width="10" /> |
||
Path | <path d="M 10,100 L 50,50 v 50 h 70 c 0 0 30 0 30 -50" fill="none" stroke="rgb(255,153,102)" stroke-width="2"/> |
|
|
Path: Arc | <path d="M 50 50 A 10 40 0 0 0 70 50 A 5 40 0 0 0 60 50 A 10 40 0 0 0 80 50" stroke="red" fill="none" /> |
Meaning of the numbers:
|
|
Bezier-path (quadratic) |
<path d="M 100,10 Q 10,50 200,150" fill="none" stroke="blue"/> |
||
Text | <text x="20" y="50" text-anchor="right" fill="currentColor">Testtext x<tspan dy="-0.4em" font-size="0.6em">2</tspan></text> |
Hint: This details-page makes use of the deprecated <xmp>
-tag. Let's hope that browsers keep supporting it.
Use these i.e. with: <use href="#measure" x="100" y="200"/>
Symbol | Example | Code |
---|---|---|
Arrowhead |
|
|
Electron |
|
Hint: This details-page makes use of the deprecated <xmp>
-tag. Let's hope that browsers keep supporting it.
What | Example | Code | Info |
---|---|---|---|
Formulas |
|
The MathML-Code can i.e. be created with mdTeX2html |
PolarSVGedit v0.9.3dev - (c) 2023 by Dirk Winkel - Licenced under GPL v3 or newer