Class Keyframe

java.lang.Object
gaiasky.desktop.util.camera.Keyframe

public class Keyframe
extends java.lang.Object
Represents a keyframe and contains the camera state, the simulation time, the frame and a descriptor name.
  • Field Summary

    Fields
    Modifier and Type Field Description
    Vector3d dir  
    java.lang.String name  
    Vector3d pos  
    boolean seam
    Is it a seam? (breaks splines)
    double seconds  
    long time  
    Vector3d up  
  • Constructor Summary

    Constructors
    Constructor Description
    Keyframe​(java.lang.String name, Vector3d pos, Vector3d dir, Vector3d up, long time, double secs, boolean seam)  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • name

      public java.lang.String name
    • pos

      public Vector3d pos
    • dir

      public Vector3d dir
    • up

      public Vector3d up
    • time

      public long time
    • seconds

      public double seconds
    • seam

      public boolean seam
      Is it a seam? (breaks splines)
  • Constructor Details

    • Keyframe

      public Keyframe​(java.lang.String name, Vector3d pos, Vector3d dir, Vector3d up, long time, double secs, boolean seam)