OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:actorCoords
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
InputEvent.java
122
/** Sets
actorCoords
to this event's coordinates relative to the specified actor.
123
* @param
actorCoords
Output for resulting coordinates. */
124
public Vector2 toCoordinates (Actor actor, Vector2
actorCoords
) {
125
actorCoords
.set(stageX, stageY);
126
actor.stageToLocalCoordinates(
actorCoords
);
127
return
actorCoords
;
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
TextField.java
507
Vector2
actorCoords
= actor.getParent().localToStageCoordinates(tmp3.set(actor.getX(), actor.getY()));
508
if ((
actorCoords
.y < currentCoords.y || (
actorCoords
.y == currentCoords.y &&
actorCoords
.x > currentCoords.x)) ^ up) {
510
|| (
actorCoords
.y > bestCoords.y || (
actorCoords
.y == bestCoords.y &&
actorCoords
.x < bestCoords.x)) ^ up) {
512
bestCoords.set(
actorCoords
);
[
all
...]
Completed in 54 milliseconds