HomeSort by relevance Sort by last modified time
    Searched full:caplength (Results 1 - 5 of 5) sorted by null

  /external/tcpdump/
print-ascii.c 60 u_int caplength; local
63 caplength = (ndo->ndo_snapend >= cp) ? ndo->ndo_snapend - cp : 0;
64 if (length > caplength)
65 length = caplength;
96 u_int caplength; local
103 caplength = (ndo->ndo_snapend >= cp) ? ndo->ndo_snapend - cp : 0;
104 if (length > caplength)
105 length = caplength;
158 u_int caplength; local
162 caplength = (ndo->ndo_snapend >= cp) ? ndo->ndo_snapend - cp : 0
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/
ArrowShapeBuilder.java 32 * @param capLength is the height of the cap in percentage, must be in (0,1)
35 public static void build (MeshPartBuilder builder, float x1, float y1, float z1, float x2, float y2, float z2, float capLength, float stemThickness,
39 float coneHeight = length * capLength;
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
ModelBuilder.java 385 * @param capLength is the height of the cap in percentage, must be in (0,1)
388 public Model createXYZCoordinates (float axisLength, float capLength, float stemThickness, int divisions, int primitiveType,
396 partBuilder.arrow(0, 0, 0, axisLength, 0, 0, capLength, stemThickness, divisions);
398 partBuilder.arrow(0, 0, 0, 0, axisLength, 0, capLength, stemThickness, divisions);
400 partBuilder.arrow(0, 0, 0, 0, 0, axisLength, capLength, stemThickness, divisions);
412 * @param capLength is the height of the cap in percentage, must be in (0,1)
415 public Model createArrow (float x1, float y1, float z1, float x2, float y2, float z2, float capLength, float stemThickness,
418 part("arrow", primitiveType, attributes, material).arrow(x1, y1, z1, x2, y2, z2, capLength, stemThickness, divisions);
MeshBuilder.java     [all...]
MeshPartBuilder.java 473 public void arrow (float x1, float y1, float z1, float x2, float y2, float z2, float capLength, float stemThickness,

Completed in 199 milliseconds