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

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/
Path.java 24 import com.android.cts.verifier.sensors.sixdof.Utils.Path.PathUtilityClasses.Waypoint;
32 protected ArrayList<Waypoint> mCurrentPath = new ArrayList<>();
33 protected ArrayList<Waypoint> mPathMarkers = new ArrayList<>();
36 * Creates a waypoint and adds it to the path.
38 * @param coordinates the coordinates to use for the waypoint.
53 Waypoint waypoint = new Waypoint(coordinates, userGenerated, currentLap); local
54 mCurrentPath.add(waypoint);
55 if (waypoint.isUserGenerated())
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Tween.java 623 * Adds a waypoint to the path. The default path runs from the start values
629 * @param targetValue The target of this waypoint.
632 public Tween waypoint(float targetValue) { method in class:Tween
640 * Adds a waypoint to the path. The default path runs from the start values
649 * @param targetValue1 The 1st target of this waypoint.
650 * @param targetValue2 The 2nd target of this waypoint.
653 public Tween waypoint(float targetValue1, float targetValue2) { method in class:Tween
662 * Adds a waypoint to the path. The default path runs from the start values
671 * @param targetValue1 The 1st target of this waypoint.
672 * @param targetValue2 The 2nd target of this waypoint
676 public Tween waypoint(float targetValue1, float targetValue2, float targetValue3) { method in class:Tween
698 public Tween waypoint(float... targetValues) { method in class:Tween
    [all...]

Completed in 69 milliseconds