FreeCAD / src /Mod /CAM /App /FeaturePathCompound.pyi
AbdulElahGwaith's picture
Upload folder using huggingface_hub
985c397 verified
# SPDX-License-Identifier: LGPL-2.1-or-later
from typing import Any
from Base.Metadata import export
from App.DocumentObject import DocumentObject
@export(
Include="Mod/CAM/App/FeaturePathCompound.h",
TwinPointer="FeatureCompound",
Namespace="Path",
)
class FeaturePathCompound(DocumentObject):
"""
This class handles Path Compound features
Author: Yorik van Havre (yorik@uncreated.net)
License: LGPL-2.1-or-later
"""
def addObject(self) -> Any:
"""Add an object to the group"""
...
def removeObject(self) -> Any:
"""Remove an object from the group"""
...