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

Function Dot

Common/DataModel/vtkVector.h:107–115  ·  view source on GitHub ↗

@{ * The dot product of this and the supplied vector. */

Source from the content-addressed store, hash-verified

105 * The dot product of this and the supplied vector.
106 */
107 T Dot(const vtkVector<T, Size>& other) const
108 {
109 T result(0);
110 for (int i = 0; i < Size; ++i)
111 {
112 result += this->Data[i] * other[i];
113 }
114 return result;
115 }
116 ///@}
117
118 ///@{

Callers 15

DerivativesMethod · 0.70
DerivativesMethod · 0.70
IsInsideOutMethod · 0.70
InflateMethod · 0.70
InitializeMethod · 0.70
InflateMethod · 0.70
Distance2LinePointMethod · 0.70
IntersectWithLineMethod · 0.70
DerivativesMethod · 0.70
ProjectTo2DMethod · 0.70
PointInTriangleMethod · 0.70
EvaluateFunctionMethod · 0.70

Calls

no outgoing calls

Tested by 3

ProjectPointOntoPlaneFunction · 0.40
GeneratePointInHalfPlaneFunction · 0.40