Latest updates

This commit is contained in:
2025-05-24 19:35:29 +01:00
parent 3eb2bb0491
commit 9d6c761d15
33 changed files with 6979 additions and 112 deletions

View File

@@ -6,6 +6,7 @@
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="./drawtriangle.js"></script>
<script src="./drawtriangleinverted.js"></script>
<script src="./drawbar.js"></script>
<script src="./savesvg.js"></script>
<style>
@@ -13,7 +14,7 @@
font-family: sans-serif;
margin: 0;
padding: 0;
background-color: blue;
background-color: white;
}
svg {
@@ -57,22 +58,25 @@
drawtriangle('#svg1','Roles','#008845',[0.5,0.6,0.5],'red', { x: 0, y: 350 },-0.7);
drawtriangle('#svg1','Actions','#b2c8c4',[0.1,0.6,0.5],'green',{ x: 370, y: 350 },2.3);
drawtriangle('#svg1','Approach','#ed4c0c',[0.3,0.6,0.5],amber,{ x: 185, y: 30 },1.4);
drawtriangleinverted('#svg1','Impact','#74469c',[0.7,0.6,0.8],'',{ x: 185, y: 243},2.4);
drawtriangleinverted('#svg1','Impact','#74469c',[0.7,0.6,0.8],'green',{ x: 185, y: 243},2.4);
makeSvgRightClickable('svg1');
doLittleWhiteTriangle('svg2');
drawtriangle('#svg2','Roles','#008845',[0.5,0.6,0.5],'red', { x: 0, y: 100 },-0.7);
drawtriangle('#svg2','Roles','#008845',[0.5,0.6,0.5],'', { x: 0, y: 100 },-0.7);
makeSvgRightClickable('svg2');
drawBar('#svg3');
makeSvgRightClickable('svg3');
">
<svg xmlns="http://www.w3.org/2000/svg" id="svg1" width="1000" height="1000"></svg>
<svg xmlns="http://www.w3.org/2000/svg" id="svg2" width="500" height="500"></svg>
<svg xmlns="http://www.w3.org/2000/svg" id="svg3" width="800" height="800"></svg>
</body>
</html>