0: East, 3: South, 6: West, 9: North, 12: East
| 1149 | |
| 1150 | // 0: East, 3: South, 6: West, 9: North, 12: East |
| 1151 | void ImDrawList::PathArcToFast(const ImVec2& center, float radius, int a_min_of_12, int a_max_of_12) |
| 1152 | { |
| 1153 | if (radius <= 0.0f) |
| 1154 | { |
| 1155 | _Path.push_back(center); |
| 1156 | return; |
| 1157 | } |
| 1158 | _PathArcToFastEx(center, radius, a_min_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, a_max_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, 0); |
| 1159 | } |
| 1160 | |
| 1161 | void ImDrawList::PathArcTo(const ImVec2& center, float radius, float a_min, float a_max, int num_segments) |
| 1162 | { |
no test coverage detected