initial commit

This commit is contained in:
Ian 'z0r0' Abreu
2025-07-18 18:27:08 -04:00
parent 7e0d2d21f7
commit b26b66d29a
12 changed files with 608 additions and 5 deletions

View 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"""
...