updating docblock locations.

This commit is contained in:
Ian 'z0r0' Abreu
2025-09-02 08:28:47 -04:00
parent 8d56e3e529
commit 0217c1ef97
76 changed files with 230 additions and 1 deletions

View File

@@ -13,6 +13,9 @@ class BlendCurve(PyObjectBase):
"""
Create a BlendCurve that interpolate 2 BlendPoints.
curve = BlendCurve(BlendPoint1, BlendPoint2)
Author: Mattéo Grellier (matteogrellier@gmail.com)
License: LGPL-2.1-or-later
"""
def compute(self) -> Any:

View File

@@ -15,6 +15,9 @@ class BlendPoint(PyObjectBase):
myBlendPoint = BlendPoint([Point, D1, D2, ..., DN])
BlendPoint can also be constructed from an edge
myBlendPoint = BlendPoint(Edge, parameter = float, continuity = int)
Author: Mattéo Grellier (matteogrellier@gmail.com)
License: LGPL-2.1-or-later
"""
@constmethod