This commit is contained in:
syuilo 2021-07-19 23:48:22 +09:00
parent 9414a944b7
commit 248edb5dfd

View file

@ -15,6 +15,7 @@
:y2="5 - (Math.cos(sAngle) * ((sHandLengthRatio * 5) - handsPadding))" :y2="5 - (Math.cos(sAngle) * ((sHandLengthRatio * 5) - handsPadding))"
:stroke="sHandColor" :stroke="sHandColor"
:stroke-width="thickness / 2" :stroke-width="thickness / 2"
stroke-linecap="round"
/> />
<line <line
@ -24,6 +25,7 @@
:y2="5 - (Math.cos(mAngle) * ((mHandLengthRatio * 5) - handsPadding))" :y2="5 - (Math.cos(mAngle) * ((mHandLengthRatio * 5) - handsPadding))"
:stroke="mHandColor" :stroke="mHandColor"
:stroke-width="thickness" :stroke-width="thickness"
stroke-linecap="round"
/> />
<line <line
@ -33,6 +35,7 @@
:y2="5 - (Math.cos(hAngle) * ((hHandLengthRatio * 5) - handsPadding))" :y2="5 - (Math.cos(hAngle) * ((hHandLengthRatio * 5) - handsPadding))"
:stroke="hHandColor" :stroke="hHandColor"
:stroke-width="thickness" :stroke-width="thickness"
stroke-linecap="round"
/> />
</svg> </svg>
</template> </template>