Searched refs:LineSegment (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShape.h41 struct LineSegment { struct in namespace:WebCore
42 LineSegment(float logicalLeft, float logicalRight) function in struct:WebCore::LineSegment
52 typedef Vector<LineSegment> SegmentList;
H A DShapeInsideInfo.h86 const LineSegment* currentSegment() const
H A DRectangleShape.cpp133 result.append(LineSegment(x1, x2));
178 result.append(LineSegment(x1, x2));
H A DPolygonShape.cpp375 result.append(LineSegment(interval.x1, interval.x2));
403 result.append(LineSegment(interval.x1, interval.x2));
/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionSystem.java48 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> segment
672 protected class LineSegment extends AllocationGuard { class in class:CollisionSystem
678 public LineSegment() { method in class:CollisionSystem.LineSegment
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DLineSegment.java39 * <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 { class in inherits:Cloneable,Savable,java.io.Serializable
60 public LineSegment() { method in class:LineSegment
65 public LineSegment(LineSegment ls) { method in class:LineSegment
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, bu
75 public LineSegment(Vector3f origin, Vector3f direction, float extent) { method in class:LineSegment
85 public LineSegment(Vector3f start, Vector3f end) { method in class:LineSegment
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlockLineLayout.cpp141 const LineSegment* m_segment;

Completed in 1736 milliseconds