File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,19 +53,19 @@ gives interactive controls to the user for controlling a `threejs animation`_.
53
53
Other notable deviations from the threejs API are listed below:
54
54
55
55
- Buffers are based on `numpy arrays `_, with their inbuilt knowledge of shape and dtype.
56
- As such, most threejs APIs that take a buffer is slightly modified (fewer options need
56
+ As such, most threejs APIs that take a buffer are slightly modified (fewer options need
57
57
to be specified explicitly).
58
58
59
59
- The generative geometry objects (e.g. :py:class: `~pythreejs.SphereGeometry ` and
60
60
:py:class: `~pythreejs.BoxBufferGeometry `) do not sync their vertices or similar data
61
61
by default. To gain acess to the generated data, convert them to either the
62
62
:py:class: `~pythreejs.Geometry ` or :py:class: `~pythreejs.BufferGeometry ` type with
63
- the :py:meth: `~pythreejs.BufferGeometry.from_ref ` factory method. See the method
64
- documentation for further details.
63
+ the :py:meth: `~pythreejs.BufferGeometry.from_geometry ` factory method.
65
64
66
65
- Methods are often not mirrored to the Python side. However, they can be
67
66
executed with the :py:meth: `~pythreejs.ThreeWidget.exec_three_obj_method ` method.
68
- Consider contributing
67
+ Consider contributing to make methods directly available. Possibly, these can
68
+ be auto-generated as well.
69
69
70
70
71
71
You can’t perform that action at this time.
0 commit comments