19 lines
469 B
Python
19 lines
469 B
Python
from typing import Any
|
|
|
|
from Base.Metadata import export
|
|
from TechDraw.DrawViewDimension import DrawViewDimension
|
|
|
|
@export(
|
|
Include="Mod/TechDraw/App/DrawViewDimExtent.h",
|
|
Namespace="TechDraw",
|
|
FatherInclude="Mod/TechDraw/App/DrawViewDimensionPy.h",
|
|
)
|
|
class DrawViewDimExtent(DrawViewDimension):
|
|
"""
|
|
Feature for creating and manipulating Technical Drawing DimExtents
|
|
"""
|
|
|
|
def tbd(self) -> Any:
|
|
"""tbd() - returns tbd."""
|
|
...
|