MCPcopy Create free account
hub / github.com/dartsim/dart / cross

Function cross

dart/math/Geometry.cpp:1865–1868  ·  view source on GitHub ↗

==============================================================================

Source from the content-addressed store, hash-verified

1863
1864//==============================================================================
1865double cross(const Eigen::Vector2d& _v1, const Eigen::Vector2d& _v2)
1866{
1867 return _v1[0] * _v2[1] - _v1[1] * _v2[0];
1868}
1869
1870//==============================================================================
1871bool isInsideSupportPolygon(

Callers 2

isLeftTurnFunction · 0.70
isInsideSupportPolygonFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected