Skip to content

Commit

Permalink
Merge pull request #212 from pyoscx/fix/std_roadmark_solid
Browse files Browse the repository at this point in the history
fix (STD_ROADMARK_SOLID): return solid instead of broken
  • Loading branch information
MandolinMicke authored Jan 16, 2024
2 parents c959839 + 82040f8 commit 12ea6ae
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scenariogeneration/xodr/generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,19 @@
from warnings import warn


STD_ROADMARK_SOLID = std_roadmark_broken()
warn(
"STD_ROADMARK_<RoadMarkType> is deprecated and will be removed in a few releases! Use std_roadmark_<RoadMarkType> functions instead.",
DeprecationWarning,
5,
)
STD_ROADMARK_SOLID = std_roadmark_solid()
STD_ROADMARK_BROKEN = std_roadmark_broken()
STD_ROADMARK_BROKEN_TIGHT = std_roadmark_broken_tight()
STD_ROADMARK_BROKEN_BROKEN = std_roadmark_broken_broken()
STD_ROADMARK_SOLID_SOLID = std_roadmark_solid_solid()
STD_ROADMARK_SOLID_BROKEN = std_roadmark_solid_broken()
STD_ROADMARK_BROKEN_SOLID = std_roadmark_broken_solid()


STD_START_CLOTH = 1 / 1000000000


Expand Down

0 comments on commit 12ea6ae

Please sign in to comment.