Skip to content

Commit

Permalink
make extrude and tessalate optional
Browse files Browse the repository at this point in the history
  • Loading branch information
cleder committed Apr 3, 2023
1 parent 8958870 commit f3b1c4d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions fastkml/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,8 +720,8 @@ def __init__(
ns: Optional[str] = None,
id: Optional[str] = None,
target_id: Optional[str] = None,
extrude: bool = False,
tessellate: bool = False,
extrude: Optional[bool] = False,
tessellate: Optional[bool] = False,
altitude_mode: Optional[AltitudeMode] = None,
geometry: geo.Point,
) -> None:
Expand Down Expand Up @@ -795,8 +795,8 @@ def __init__(
ns: Optional[str] = None,
id: Optional[str] = None,
target_id: Optional[str] = None,
extrude: bool = False,
tessellate: bool = False,
extrude: Optional[bool] = False,
tessellate: Optional[bool] = False,
altitude_mode: Optional[AltitudeMode] = None,
geometry: geo.LineString,
) -> None:
Expand Down Expand Up @@ -870,8 +870,8 @@ def __init__(
ns: Optional[str] = None,
id: Optional[str] = None,
target_id: Optional[str] = None,
extrude: bool = False,
tessellate: bool = False,
extrude: Optional[bool] = False,
tessellate: Optional[bool] = False,
altitude_mode: Optional[AltitudeMode] = None,
geometry: geo.LinearRing,
) -> None:
Expand Down Expand Up @@ -911,8 +911,8 @@ def __init__(
ns: Optional[str] = None,
id: Optional[str] = None,
target_id: Optional[str] = None,
extrude: bool = False,
tessellate: bool = False,
extrude: Optional[bool] = False,
tessellate: Optional[bool] = False,
altitude_mode: Optional[AltitudeMode] = None,
geometry: geo.Polygon,
) -> None:
Expand Down

0 comments on commit f3b1c4d

Please sign in to comment.