Files
create/src/Mod/CAM/App/FeaturePathCompoundPy.pyi
Ian 'z0r0' Abreu f8fe935932 fixing imports
2025-07-20 09:04:27 -04:00

29 lines
677 B
Python

from typing import Any
from Base.Metadata import export
from App.DocumentObject import DocumentObject
@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(DocumentObject):
"""
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"""
...