OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LineSegment
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.h
42
struct
LineSegment
{
43
LineSegment
(float logicalLeft, float logicalRight)
53
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/chromium_org/ui/gfx/
render_text.h
116
struct
LineSegment
{
117
LineSegment
();
118
~
LineSegment
();
136
std::vector<
LineSegment
> segments;
render_text.cc
332
LineSegment
::
LineSegment
() : run(0) {}
334
LineSegment
::~
LineSegment
() {}
[
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 483 milliseconds