MCPcopy Create free account
hub / github.com/Kitware/VTK / Dot2D

Function Dot2D

Common/Core/vtkMath.h:705–705  ·  view source on GitHub ↗

* Dot product of two 2-vectors. (float version). */

Source from the content-addressed store, hash-verified

703 * Dot product of two 2-vectors. (float version).
704 */
705 static float Dot2D(const float x[2], const float y[2]) { return x[0] * y[0] + x[1] * y[1]; }
706
707 /**
708 * Dot product of two 2-vectors. (double version).

Callers 11

ProjectVector2DMethod · 0.85
TestDot2DFunction · 0.85
CircumcircleMethod · 0.85
CellBoundaryMethod · 0.85
CellBoundaryMethod · 0.85
Distance2LinePointMethod · 0.85
RenderOpaqueGeometryMethod · 0.85
FindTriangleMethod · 0.85
FindTriangleMethod · 0.85

Calls

no outgoing calls

Tested by 1

TestDot2DFunction · 0.68