MCPcopy Index your code
hub / github.com/MapServer/MapServer / point_diff

Function point_diff

maputil.c:1615–1622  ·  view source on GitHub ↗

vector difference */

Source from the content-addressed store, hash-verified

1613
1614/* vector difference */
1615static pointObj point_diff(const pointObj a, const pointObj b) {
1616 pointObj retv = {a.x-b.x,a.y-b.y
1617#ifdef USE_POINT_Z_M
1618 ,a.z-b.z,a.m-b.m
1619#endif
1620 };
1621 return retv;
1622}
1623
1624/* vector sum */
1625static pointObj point_sum(const pointObj a, const pointObj b) {

Callers 1

msOffsetPolylineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected