-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ffed55
commit 467ae71
Showing
6 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
from typing import List | ||
import enum | ||
|
||
class HandleType(enum.Enum): | ||
AUTO = 'AUTO' | ||
VECTOR = 'VECTOR' | ||
AUTO_CLAMPED = 'AUTO_CLAMPED' | ||
|
||
class Point: | ||
""" | ||
A single point on a curve | ||
""" | ||
|
||
x: float | ||
y: float | ||
handle_type: HandleType | ||
|
||
def __init__(self, x: float, y: float, handle_type: HandleType = HandleType.AUTO): | ||
self.x = x | ||
self.y = y | ||
self.handle_type = handle_type | ||
|
||
class Curve: | ||
""" | ||
A class that represents a curve. | ||
Create a curve from a set of `Point`s. | ||
```python | ||
my_curve = Curve( | ||
Point(0, 0, Handle.AUTO_CLAMPED), | ||
Point(0.2, 0.3, Handle.AUTO), | ||
Point(1, 1, Handle.VECTOR) | ||
) | ||
``` | ||
""" | ||
|
||
points: List[Point] | ||
|
||
def __init__(self, *points: Point): | ||
if len(points) == 1 and isinstance(points[0], list): | ||
self.points = points[0] | ||
else: | ||
self.points = list(points) | ||
|
||
def apply(self, curve): | ||
""" | ||
Apply the points to a curve object. | ||
""" | ||
for i, point in enumerate(self.points): | ||
if len(curve.points) > i: | ||
curve.points[i].location = (point.x, point.y) | ||
curve.points[i].handle_type = point.handle_type.value | ||
else: | ||
curve.points.new(point.x, point.y).handle_type = point.handle_type.value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Curves | ||
|
||
Some nodes, such as *Float Curve* take a curve as a property. You can create a curve with the `Curve` class. | ||
|
||
```python | ||
float_curve( | ||
mapping=Curve( | ||
Point(0, 0), | ||
Point(0.5, 0.25), | ||
Point(1, 1, HandleType.VECTOR), # Optionally specify a handle type, such as `AUTO`, `VECTOR`, or `AUTO_CLAMPED`. | ||
) | ||
) | ||
``` | ||
|
||
![](./float_curve.png) | ||
|
||
You can also pass the points as a list to `Curve`. | ||
|
||
```python | ||
points = [Point(0, 0), Point(1, 1)] | ||
float_curve( | ||
mapping=Curve(points) | ||
) | ||
``` | ||
|
||
If a node has multiple curve properties, such as the *Vector Curves* node, pass a list of curves to the node. | ||
|
||
```python | ||
vector_curves( | ||
mapping=[x_curve, y_curve, z_curve] | ||
) | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.