From cf98c7092771ddd95664ff39c634669d73f970b0 Mon Sep 17 00:00:00 2001 From: Michael Leuschel <leuschel@uni-duesseldorf.de> Date: Wed, 13 Apr 2022 18:55:51 +0200 Subject: [PATCH] add missing svg Signed-off-by: Michael Leuschel <leuschel@uni-duesseldorf.de> --- Physics/n_bodies.svg | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Physics/n_bodies.svg diff --git a/Physics/n_bodies.svg b/Physics/n_bodies.svg new file mode 100644 index 0000000..1f4f045 --- /dev/null +++ b/Physics/n_bodies.svg @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns="http://www.w3.org/2000/svg" + height="400" width="400" + viewBox="-100 -100 200 200" + > + + + <defs> + <marker id="arrowhead" markerWidth="10" markerHeight="7" + refX="0" refY="3.5" orient="auto"> + <polygon points="0 0, 10 3.5, 0 7" /> + </marker> + + <marker id="startarrow" markerWidth="10" markerHeight="7" + refX="10" refY="3.5" orient="auto"> + <polygon points="10 0, 10 7, 0 3.5" fill="green" /> + </marker> + + <marker id="endarrow" markerWidth="10" markerHeight="7" + refX="0" refY="3.5" orient="auto"> + <polygon points="0 0, 10 3.5, 0 7" fill="green" /> + </marker> + </defs> + + + + +</svg> -- GitLab