| 212 | } |
| 213 | |
| 214 | int DebugDraw::AddRibbon(const vec3 &start, const vec3 &end, const vec4 &start_color, const vec4 &end_color, const float start_width, const float end_width, const DDLifespan lifespan, const DDFlag &flags /*= _DD_NO_FLAG*/) { |
| 215 | DebugDrawElement *element = new DebugDrawRibbon(start, end, start_color, end_color, start_width, end_width, flags); |
| 216 | return AddElement(element, lifespan); |
| 217 | } |
| 218 | |
| 219 | int DebugDraw::AddRibbon(const DDLifespan lifespan, const DDFlag &flags /*= _DD_NO_FLAG*/) { |
| 220 | DebugDrawElement *element = new DebugDrawRibbon(flags); |
no outgoing calls
no test coverage detected