Skip to content

Commit

Permalink
Merge pull request #329 from specklesystems/jrm/spirals-fix
Browse files Browse the repository at this point in the history
fix(objects): [CNX-9014] Fixed issue with Spiral turns not deserializing in SpecklePy
  • Loading branch information
JR-Morgan authored Feb 19, 2024
2 parents e726345 + dbc1aef commit 7812393
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/specklepy/objects/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,15 +303,15 @@ def as_points(self) -> List[Point]:


class SpiralType(Enum):
Biquadratic = (0,)
BiquadraticParabola = (1,)
Bloss = (2,)
Clothoid = (3,)
Cosine = (4,)
Cubic = (5,)
CubicParabola = (6,)
Radioid = (7,)
Sinusoid = (8,)
Biquadratic = 0
BiquadraticParabola = 1
Bloss = 2
Clothoid = 3
Cosine = 4
Cubic = 5
CubicParabola = 6
Radioid = 7
Sinusoid = 8
Unknown = 9


Expand Down

0 comments on commit 7812393

Please sign in to comment.