| 117 | /** @brief Mirror every field into a runtime C struct. */ |
| 118 | template <typename TDst> |
| 119 | void ApplyTo(TDst& Dst) const |
| 120 | { |
| 121 | Dst.stiffness = static_cast<decltype(Dst.stiffness)>(Stiffness); |
| 122 | Dst.stiffnessrot = static_cast<decltype(Dst.stiffnessrot)>(Stiffnessrot); |
| 123 | Dst.force = static_cast<decltype(Dst.force)>(Force); |
| 124 | Dst.torque = static_cast<decltype(Dst.torque)>(Torque); |
| 125 | Dst.alpha = static_cast<decltype(Dst.alpha)>(Alpha); |
| 126 | Dst.fogstart = static_cast<decltype(Dst.fogstart)>(Fogstart); |
| 127 | Dst.fogend = static_cast<decltype(Dst.fogend)>(Fogend); |
| 128 | Dst.znear = static_cast<decltype(Dst.znear)>(Znear); |
| 129 | Dst.zfar = static_cast<decltype(Dst.zfar)>(Zfar); |
| 130 | Dst.haze = static_cast<decltype(Dst.haze)>(Haze); |
| 131 | Dst.shadowclip = static_cast<decltype(Dst.shadowclip)>(Shadowclip); |
| 132 | Dst.shadowscale = static_cast<decltype(Dst.shadowscale)>(Shadowscale); |
| 133 | Dst.actuatortendon = static_cast<decltype(Dst.actuatortendon)>(Actuatortendon); |
| 134 | } |
| 135 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected