Syntax
- alignScopeToGeometry(upAxisSelector, faceIndex, edgeIndex)
- alignScopeToGeometry(upAxisSelector, faceSelector, edgeIndex)
- alignScopeToGeometry(upAxisSelector, faceIndex, edgeSelector)
- alignScopeToGeometry(upAxisSelector, faceSelector, edgeSelector)
Parameters
- upAxisSelector—selstr{ yUp | zUp }—(xUp is not supported).
- faceIndex—float0-based index of face which contains the edge. Negative indices are modulo-adjusted, i.e. -1 is the last face.
- edgeIndex—float0-based index of edge which will become the new x-axis. Negative indices are modulo-adjusted, i.e. -1 is the last edge. The edge index is relative to the selected face.
- faceSelector—selstr
- world.lowest—takes the face with lowest y world-coordinates.
- largest—takes the largest face.
- any—(only in combination with an edgeSelector) takes the face for which the edge selector has external value.
- edgeSelector—selstr
- world.lowest—takes the edge with lowest y world-coordinates.
- longest—takes the longest edge.
Description
The alignScopeToGeometry operation manipulates the scope, the pivot and the geometry attributes in the following way:
- Select new pivot axis directions that are defined by upAxisSelector and the selected face and edge.
- Calculate the oriented bounding box (OOB) for the geometry along these axes and set pivot.p to the origin of the OOB. The new scope dimensions are set to the OOB.
- Transform the geometry into this new coordinate system.
The parameters let you choose an edge of a face in the geometry. The new x-axis of the scope will be parallel to this edge, and the up-axis will be the face's normal.
The geometry is projected to the new scope, i.e. stays at the same place in world coordinates.
Related
Examples
Aligning to the lowest edge
The initial scene: After a face component split, the scope (and pivot, fat) happen to be positioned such that the y-axis points towards the ground.
| |
Applying alignScopeToGeometry() with the any and world.lowest selectors guarantees that the y-axis of the scope points upwards. This is very useful, e.g. for placing bricks on a roof.
|
Basic Usage
The initial scene: A mesh is inserted and two faces highlighted by applying a component split.
| |
The same scene, with scope and pivot of shape B highlighted. | |
After alignScopeToGeometry(),the pivot's (and the scope's) x-axis points along edge 1 of face 0 (red); the z-axis points along the face normal and the x-axis is normal to the two others. The pivot is positioned at the edges starting point and the scope is the pivot-aligned bounding box of the geometry.
| |
Here, the second edge of face 32 (blue) is used, and the face-normal becomes the new y-axis.
| |
In this case, any and world.lowest select the edge with lowest y-position (in world coordinates), which becomes the new x-axis, and the corresponding face-normal becomes the new y-axis (because of the yUp selector).
|