Artifact 2baa146198022d64eb7ce87b2d0b2fec8766e7d49362468ee1de891e821b1c36:
- File doc/ref/transform_sdf_combiner.md — part of check-in [cc363bac05] at 2024-12-12 23:11:15 on branch trunk — chore: regenerated embedded documentation. tweak: package builder to update the doc/ref add/miss information. (user: aku size: 7638)

| Project ↗ | Documentation ↗ | — | Tutorials ↗ | How To's ↗ | Explanations ↗ | References |
| Entry ↗ | — | Sections ↘ | Permuted Sections ↘ | Names ↘ | Permuted Names ↘ | Strict ↘ | Implementations ↘ |
Documentation -- Reference Pages -- transform sdf combiner
<anchor='top'> Table Of Contents
Operators
Operators
↑ aktive op sdf and
Syntax: aktive op sdf and srcs... [→ definition]
Returns the intersection (*, max) of all input SDFs.
| Input | Description |
|---|---|
| args... | Source images |
Examples
| @1
|
@2
|
aktive op sdf and @1 @2
| ||||||
|---|---|---|---|---|---|---|---|---|
geometry(0 0 128 128 1) |
geometry(0 0 128 128 1) |
|
↑ aktive op sdf or
Syntax: aktive op sdf or srcs... [→ definition]
Returns the union (+, min) of all input SDFs.
| Input | Description |
|---|---|
| args... | Source images |
Examples
| @1
|
@2
|
aktive op sdf or @1 @2
| ||||||
|---|---|---|---|---|---|---|---|---|
geometry(0 0 128 128 1) |
geometry(0 0 128 128 1) |
|
↑ aktive op sdf sub
Syntax: aktive op sdf sub a b [→ definition]
Returns the difference A - B of the two input SDFs. This is defined as A * (not B).
| Input | Description |
|---|---|
| a | SDF A |
| b | SDF B |
Examples
| @1
|
@2
|
aktive op sdf sub @1 @2
| ||||||
|---|---|---|---|---|---|---|---|---|
geometry(0 0 128 128 1) |
geometry(0 0 128 128 1) |
|
↑ aktive op sdf xor
Syntax: aktive op sdf xor srcs... [→ definition]
Returns the symmetric difference of all input SDFs.
| Input | Description |
|---|---|
| args... | Source images |
Examples
| @1
|
@2
|
aktive op sdf xor @1 @2
| ||||||
|---|---|---|---|---|---|---|---|---|
geometry(0 0 128 128 1) |
geometry(0 0 128 128 1) |
|
↑ aktive op sdf xor-core
Syntax: aktive op sdf xor-core a b [→ definition]
Returns the symmetric difference of the two input SDFs. This is defined as (A + B) - (A * B).
| Input | Description |
|---|---|
| a | SDF A |
| b | SDF B |
Examples
| @1
|
@2
|
aktive op sdf xor-core @1 @2
| ||||||
|---|---|---|---|---|---|---|---|---|
geometry(0 0 128 128 1) |
geometry(0 0 128 128 1) |
|