| 24 | } |
| 25 | |
| 26 | void Set(const Vec3 &v) |
| 27 | { |
| 28 | if(m_pSO->BeginSetGetChain()) |
| 29 | { |
| 30 | m_pSO->SetValueChain("x",v.x); |
| 31 | m_pSO->SetValueChain("y",v.y); |
| 32 | m_pSO->SetValueChain("z",v.z); |
| 33 | m_pSO->EndSetGetChain(); |
| 34 | } |
| 35 | } |
| 36 | Vec3 Get() |
| 37 | { |
| 38 | Vec3 v(0,0,0); |
nothing calls this directly
no test coverage detected