Add 'no_joint' to joint types

This commit is contained in:
Grant Sanderson
2023-01-10 11:06:41 -08:00
parent ab1227a908
commit 6ec3d9f4a5
5 changed files with 14 additions and 11 deletions

View File

@ -65,8 +65,8 @@ RADIANS: float = 1
FFMPEG_BIN: str = "ffmpeg"
JOINT_TYPE_MAP: dict = {
"auto": 0,
"round": 1,
"no_joint": 0,
"auto": 1,
"bevel": 2,
"miter": 3,
}