MCPcopy Create free account
hub / github.com/MyGUI/mygui / point

Method point

MyGUIEngine/src/msdfgen/core/edge-segments.cpp:108–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106}
107
108Point2 LinearSegment::point(double param) const {
109 return mix(p[0], p[1], param);
110}
111
112Point2 QuadraticSegment::point(double param) const {
113 return mix(mix(p[0], p[1], param), mix(p[1], p[2], param), param);

Callers 15

getCursorPositionMethod · 0.45
getCursorCoordMethod · 0.45
doRenderMethod · 0.45
updateDropItemsMethod · 0.45
_initialiseMethod · 0.45
_updateAbsolutePointMethod · 0.45
_setAlignMethod · 0.45
setPositionMethod · 0.45
setCoordMethod · 0.45
detachFromWidgetMethod · 0.45
attachToWidgetMethod · 0.45
notifyMouseDragMethod · 0.45

Calls 1

mixFunction · 0.85

Tested by

no test coverage detected