Lines Matching refs:_Path
370 _Path.resize(0); in Clear()
386 _Path.clear(); in ClearFreeMemory()
942 _Path.push_back(centre); in PathArcToFast()
945 _Path.reserve(_Path.Size + (a_max_of_12 - a_min_of_12 + 1)); in PathArcToFast()
949 _Path.push_back(ImVec2(centre.x + c.x * radius, centre.y + c.y * radius)); in PathArcToFast()
957 _Path.push_back(centre); in PathArcTo()
963 _Path.reserve(_Path.Size + (num_segments + 1)); in PathArcTo()
967 _Path.push_back(ImVec2(centre.x + ImCos(a) * radius, centre.y + ImSin(a) * radius)); in PathArcTo()
999 ImVec2 p1 = _Path.back(); in PathBezierCurveTo()
1003 …PathBezierToCasteljau(&_Path, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, p4.x, p4.y, _Data->CurveTessella… in PathBezierCurveTo()
1016 …_Path.push_back(ImVec2(w1*p1.x + w2*p2.x + w3*p3.x + w4*p4.x, w1*p1.y + w2*p2.y + w3*p3.y + w4*p4.… in PathBezierCurveTo()