initial commit
This commit is contained in:
26
src/Mod/CAM/App/FeaturePathCompoundPy.pyi
Normal file
26
src/Mod/CAM/App/FeaturePathCompoundPy.pyi
Normal file
@@ -0,0 +1,26 @@
|
||||
from typing import Any
|
||||
from App import object
|
||||
from Base.Metadata import export
|
||||
|
||||
@export(
|
||||
Father="DocumentObjectPy",
|
||||
Name="FeaturePathCompoundPy",
|
||||
Twin="FeaturePathCompound",
|
||||
TwinPointer="FeatureCompound",
|
||||
Include="Mod/CAM/App/FeaturePathCompound.h",
|
||||
Namespace="Path",
|
||||
FatherInclude="App/DocumentObjectPy.h",
|
||||
FatherNamespace="App",
|
||||
)
|
||||
class FeaturePathCompoundPy(object):
|
||||
"""
|
||||
This class handles Path Compound features
|
||||
"""
|
||||
|
||||
def addObject(self) -> Any:
|
||||
"""Add an object to the group"""
|
||||
...
|
||||
|
||||
def removeObject(self) -> Any:
|
||||
"""Remove an object from the group"""
|
||||
...
|
||||
Reference in New Issue
Block a user