22 lines
553 B
Python
22 lines
553 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
|
|
|
|
Author: WandererFan (wandererfan@gmail.com)
|
|
License: LGPL-2.1-or-later
|
|
"""
|
|
|
|
def tbd(self) -> Any:
|
|
"""tbd() - returns tbd."""
|
|
...
|