You can use the split operation to model shapes and to set up geometry by splitting a larger geometry object into smaller ones. The split operation is central to creating designs with the CGA shape rules. The basic definition for split is as follows:
split(axis){size : operations}
See the CGA split operation topic for detailed information.
The following are split operation types:
- Absolute split
- Relative split
- Floating split
- Repeat split
The following examples start with an introductory rule and continue with examples for each split type:
In this introductory rule, the initial scope is resized and a cube is inserted in that scope. The scope's x-dimension (the length of the cube) is set to 5. The y- and z-dimensions of the scope are set to 1. The Blue rule resizes the scope's y-dimension (the height of the cube) relative to scope.sy using the relative operator '. Because the rule parameter height is set to 1, the height of the cube remains unchanged. |
Absolute split
The absolute split cuts the geometry at absolute values.
The operation split(x) { 3 : Blue } splits the geometry along the x-dimension of the scope. The cube of length 5 is cut at an absolute value of 3 units and replaced with the successive cube shape Blue.
| |
This example shows what happens if two absolute split values are used (3 units in green and 1 unit in blue). After the split, the total resulting length is 3+1=4.
| |
This example shows the effect of absolute values within a (limited) scope. The resulting shape Yellow has a length of 1 instead of 2 since there is a total length of 5. The rightmost shape Blue will not be generated.
| |
No splits will be produced with negative or zero-sized values. Both Yellow shapes are not generated. Blue starts at 1.5. The last Green shape stops at the total length of 5.
|
Relative split
The relative split uses scales relative to the scope size instead of absolute values. Relative values are denoted by the operator ' followed by a value between 0 and 1.
This example cuts the scope using the Golden Ratio.
| |
This example shows a recursive split using the Golden Ratio. The recursion stops when the geometry gets too small for a further split.
|
Floating split
A floating split adapts values so that the entire space is filled. Floating splits are denoted by the operator ~.
In this example, the split operation splits the cube of length 5 at 3 units (green). The remainder geometry is then cut at 1 unit. This time, the floating operator ~ is used, which expands the 1 unit over the remaining space of the first cut, for example, 5-3=2 units (blue).
| |
The floating value 2 fills the space (3 units in yellow) between two absolute values (1 unit in blue).
| |
Multiple floating splits with same unit (each 1.5) are distributed evenly over the remaining scope space (2 units).
| |
Three floating splits are distributed evenly.
| |
If there is no space left for a floating split, the corresponding shape is not generated (Blue in this case).
|
Repeat split
The repeat split is used to repeat geometry within a given scope. With the repetitive use of a group of geometric objects, it establishes a recognizable pattern. A typical scenario is the alternating arrangement of windows and columns in the facades of common high-rise office buildings. An asterisk (*) after the bracket denotes the repetitive split.
In the first example, a scope of length 10 is filled repetitively with a green shape with absolute length 2. Exactly 5 cubes of length 2 fit in the scope.
A floating value of 2.1 generates the same result because a split to 5 successor shapes (with a length of 2 each) still approximates the target length of 2.1 best.
| |
A floating repeat split (green) is bordered by two absolute splits (blue). Note that the resulting length of the floating splits is (10-2)/3≈2.66, which is the best approximation for the target value 2.5.
| |
The repetitive absolute split (green) will be evaluated first independently on whichever side of the split the repetition is denoted. The floating splits do not get any space to be generated.
| |
This example shows that a repeat split with absolute (or relative) values can be bordered by two neighboring floating (or absolute) splits.
| |
The size of the first floating split and the size of the repetitive floating split is the same. The 2 units are equally distributed 4 times (blue) to the resulting length of (10-3)/4=1.75.
|
Repeat split—Patterns
You can use repeat operations to create patterns. The following example shows that geometric objects can be grouped into a bracket and repeated:
A pattern is created and repeated.
| |
Repeating patterns can be inserted within other geometries.
|
Repeat split—Parallel
You can perform repeat splits in parallel.
Two repeat splits (yellow and blue) are bordered by floating splits (green).
| |
Two successive repeat splits (green and yellow) are bordered by absolute splits (blue).
|