HomeSort by relevance Sort by last modified time
    Searched refs:normalLength (Results 1 - 3 of 3) sorted by null

  /external/replicaisland/tools/
ExtractPoints.js 86 var normalLength = Math.sqrt((normalX * normalX) + (normalY * normalY));
87 normalX /= normalLength;
88 normalY /= normalLength;
  /external/icu/icu4c/source/test/cintltst/
ccapitst.c     [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Intersector.java 214 float normalLength = (float)Math.sqrt((endX - startX) * (endX - startX) + (endY - startY) * (endY - startY));
215 return Math.abs((pointX - startX) * (endY - startY) - (pointY - startY) * (endX - startX)) / normalLength;
    [all...]

Completed in 281 milliseconds