Codota Logo
KeyFrames.init
Code IndexAdd Codota to your IDE (free)

How to use
init
method
in
org.pushingpixels.trident.interpolator.KeyFrames

Best Java code snippets using org.pushingpixels.trident.interpolator.KeyFrames.init (Showing top 12 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Charset c =
  • Codota IconString charsetName;Charset.forName(charsetName)
  • Codota IconCharset.defaultCharset()
  • Codota IconContentType contentType;contentType.getCharset()
  • Smart code suggestions by Codota
}
origin: org.pushing-pixels/trident

/**
 * Simplest variation; determine keyTimes based on even division of 0-1
 * range based on number of keyValues. This constructor assumes LINEAR
 * interpolation.
 * 
 * @param keyValues
 *            values that will be assumed at each time in keyTimes
 */
public KeyFrames(KeyValues<T> keyValues) {
  init(keyValues, null, (TimelineEase) null);
}
origin: org.pushingpixels/trident

/**
 * Simplest variation; determine keyTimes based on even division of 0-1
 * range based on number of keyValues. This constructor assumes LINEAR
 * interpolation.
 * 
 * @param keyValues
 *            values that will be assumed at each time in keyTimes
 */
public KeyFrames(KeyValues<T> keyValues) {
  init(keyValues, null, (TimelineEase) null);
}
origin: com.github.insubstantial/trident

/**
 * Simplest variation; determine keyTimes based on even division of 0-1
 * range based on number of keyValues. This constructor assumes LINEAR
 * interpolation.
 * 
 * @param keyValues
 *            values that will be assumed at each time in keyTimes
 */
public KeyFrames(KeyValues<T> keyValues) {
  init(keyValues, null, (TimelineEase) null);
}
origin: com.github.insubstantial/trident

/**
 * Utility constructor that assumes even division of times according to size
 * of keyValues and interpolation according to interpolators parameter.
 * 
 * @param keyValues
 *            values that the animation will assume at each of the
 *            corresponding times in keyTimes
 * @param interpolators
 *            collection of Interpolators that control the calculation of
 *            values in each of the intervals defined by keyFrames. If this
 *            value is null, a {@link org.pushingpixels.trident.ease.Linear} Interpolator will be used for
 *            all intervals. If there is only one interpolator, that
 *            interpolator will be used for all intervals. Otherwise, there
 *            must be a number of interpolators equal to the number of
 *            intervals (which is one less than the number of keyTimes).
 * @throws IllegalArgumentException
 *             The number of interpolators must either be zero
 *             (interpolators == null), one, or one less than the size of
 *             keyTimes.
 */
public KeyFrames(KeyValues<T> keyValues, TimelineEase... interpolators) {
  init(keyValues, null, interpolators);
}
origin: com.github.insubstantial/trident

/**
 * This variant takes both keyValues (values at each point in time) and
 * keyTimes (times at which values are sampled).
 * 
 * @param keyValues
 *            values that the animation will assume at each of the
 *            corresponding times in keyTimes
 * @param keyTimes
 *            times at which the animation will assume the corresponding
 *            values in keyValues
 * @throws IllegalArgumentException
 *             keyTimes and keySizes must have the same number of elements
 *             since these structures are meant to have corresponding
 *             entries; an exception is thrown otherwise.
 */
public KeyFrames(KeyValues<T> keyValues, KeyTimes keyTimes) {
  init(keyValues, keyTimes, (TimelineEase) null);
}
origin: org.pushing-pixels/trident

/**
 * This variant takes both keyValues (values at each point in time) and
 * keyTimes (times at which values are sampled).
 * 
 * @param keyValues
 *            values that the animation will assume at each of the
 *            corresponding times in keyTimes
 * @param keyTimes
 *            times at which the animation will assume the corresponding
 *            values in keyValues
 * @throws IllegalArgumentException
 *             keyTimes and keySizes must have the same number of elements
 *             since these structures are meant to have corresponding
 *             entries; an exception is thrown otherwise.
 */
public KeyFrames(KeyValues<T> keyValues, KeyTimes keyTimes) {
  init(keyValues, keyTimes, (TimelineEase) null);
}
origin: org.pushingpixels/trident

/**
 * This variant takes both keyValues (values at each point in time) and
 * keyTimes (times at which values are sampled).
 * 
 * @param keyValues
 *            values that the animation will assume at each of the
 *            corresponding times in keyTimes
 * @param keyTimes
 *            times at which the animation will assume the corresponding
 *            values in keyValues
 * @throws IllegalArgumentException
 *             keyTimes and keySizes must have the same number of elements
 *             since these structures are meant to have corresponding
 *             entries; an exception is thrown otherwise.
 */
public KeyFrames(KeyValues<T> keyValues, KeyTimes keyTimes) {
  init(keyValues, keyTimes, (TimelineEase) null);
}
origin: org.pushingpixels/trident

/**
 * Utility constructor that assumes even division of times according to size
 * of keyValues and interpolation according to interpolators parameter.
 * 
 * @param keyValues
 *            values that the animation will assume at each of the
 *            corresponding times in keyTimes
 * @param interpolators
 *            collection of Interpolators that control the calculation of
 *            values in each of the intervals defined by keyFrames. If this
 *            value is null, a {@link LinearInterpolator} will be used for
 *            all intervals. If there is only one interpolator, that
 *            interpolator will be used for all intervals. Otherwise, there
 *            must be a number of interpolators equal to the number of
 *            intervals (which is one less than the number of keyTimes).
 * @throws IllegalArgumentException
 *             The number of interpolators must either be zero
 *             (interpolators == null), one, or one less than the size of
 *             keyTimes.
 */
public KeyFrames(KeyValues<T> keyValues, TimelineEase... interpolators) {
  init(keyValues, null, interpolators);
}
origin: org.pushing-pixels/trident

/**
 * Utility constructor that assumes even division of times according to size
 * of keyValues and interpolation according to interpolators parameter.
 * 
 * @param keyValues
 *            values that the animation will assume at each of the
 *            corresponding times in keyTimes
 * @param interpolators
 *            collection of Interpolators that control the calculation of
 *            values in each of the intervals defined by keyFrames. If this
 *            value is null, a {@link LinearInterpolator} will be used for
 *            all intervals. If there is only one interpolator, that
 *            interpolator will be used for all intervals. Otherwise, there
 *            must be a number of interpolators equal to the number of
 *            intervals (which is one less than the number of keyTimes).
 * @throws IllegalArgumentException
 *             The number of interpolators must either be zero
 *             (interpolators == null), one, or one less than the size of
 *             keyTimes.
 */
public KeyFrames(KeyValues<T> keyValues, TimelineEase... interpolators) {
  init(keyValues, null, interpolators);
}
origin: org.pushing-pixels/trident

init(keyValues, keyTimes, interpolators);
origin: org.pushingpixels/trident

init(keyValues, keyTimes, interpolators);
origin: com.github.insubstantial/trident

init(keyValues, keyTimes, interpolators);
org.pushingpixels.trident.interpolatorKeyFramesinit

Javadoc

Utility function called by constructors to perform common initialization chores

Popular methods of KeyFrames

  • getInterval
    Returns time interval that contains this time fraction

Popular in Java

  • Finding current android device location
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • requestLocationUpdates (LocationManager)
  • findViewById (Activity)
  • FileInputStream (java.io)
    A FileInputStream obtains input bytes from a file in a file system. What files are available depends
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement.A servlet is a small Java program that runs within
  • JLabel (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now