class TransformationRow
August 13, 2019 ยท View on GitHub
Member values
| Member name | Data type | Description |
|---|---|---|
| c0 | float32 | First column value |
| c1 | float32 | Second column value |
| c2 | float32 | Third column value |
| c3 | float32 | Fourth column value |
Member functions
| Function name | Return type | Input type | Description |
|---|---|---|---|
| c0() | float32 | void | Returns the current value of c0. If the c0 is not set, returns 0. |
| set_c0() | void | float32 | Sets the value of c0. After calling this, c0() will return value. |
| clear_c0() | void | void | Clears the value of c0. After calling this, c0() will return 0. |
| c1() | float32 | void | Returns the current value of c1. If the c1 is not set, returns 0. |
| set_c1() | void | float32 | Sets the value of c1. After calling this, c1() will return value. |
| clear_c1() | void | void | Clears the value of c1. After calling this, c1() will return 0. |
| c2() | float32 | void | Returns the current value of c2. If the c2 is not set, returns 0. |
| set_c2() | void | float32 | Sets the value of c2. After calling this, c2() will return value. |
| clear_c2() | void | void | Clears the value of c2. After calling this, c2() will return 0. |
| c3() | float32 | void | Returns the current value of c3. If the c3 is not set, returns 0. |
| set_c3() | void | float32 | Sets the value of c3. After calling this, c3() will return value. |
| clear_c3() | void | void | Clears the value of c3. After calling this, c3() will return 0. |
Parent topic: Base (C++)