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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.h 41 struct LineSegment {
42 LineSegment(float logicalLeft, float logicalRight)
52 typedef Vector<LineSegment> SegmentList;
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
LineSegment.java 39 * <p>LineSegment represents a segment in the space. This is a portion of a Line
41 * <p>A LineSegment is defined by an origin, a direction and an extent (or length).
44 * It is also possible to retrieve both end points of the segment {@link LineSegment#getPositiveEnd(Vector3f)}
45 * and {@link LineSegment#getNegativeEnd(Vector3f)}. There are also methods to check whether
52 public class LineSegment implements Cloneable, Savable, java.io.Serializable {
60 public LineSegment() {
65 public LineSegment(LineSegment ls) {
72 * <p>Creates a new LineSegment with the given origin, direction and extent.</p>
73 * <p>Note that the origin is not one of the ends of the LineSegment, but its center.</p>
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 48 private FixedSizeArray<LineSegment> mTemporarySegments;
49 private FixedSizeArray<LineSegment> mPendingTemporarySegments;
59 mTemporarySegments = new FixedSizeArray<LineSegment>(MAX_TEMPORARY_SEGMENTS);
60 mPendingTemporarySegments = new FixedSizeArray<LineSegment>(MAX_TEMPORARY_SEGMENTS);
237 LineSegment newSegment = mSegmentPool.allocate();
260 FixedSizeArray<LineSegment> swap = mTemporarySegments;
431 protected static boolean testSegmentAgainstList(FixedSizeArray<LineSegment> segments,
443 LineSegment segment = (LineSegment)segmentArray[x];
475 protected static boolean testBoxAgainstList(FixedSizeArray<LineSegment> segments,
    [all...]

Completed in 215 milliseconds