Set this AxisAngle to the values of a . @param a the AngleAxis4f to copy the values from @return this
(AxisAngle a)
| 122 | * @return this |
| 123 | */ |
| 124 | public AxisAngle set(AxisAngle a) { |
| 125 | x = a.x; |
| 126 | y = a.y; |
| 127 | z = a.z; |
| 128 | angle = (angle < 0.0 ? 2.0 * Math.PI + angle % (2.0 * Math.PI) : angle) % (2.0 * Math.PI); |
| 129 | return this; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * Set this {@link AxisAngle} to the given values. |