Tabnine Logo
MutableColor.set
Code IndexAdd Tabnine to your IDE (free)

How to use
set
method
in
us.ihmc.graphicsDescription.color.MutableColor

Best Java code snippets using us.ihmc.graphicsDescription.color.MutableColor.set (Showing top 8 results out of 315)

origin: us.ihmc/ihmc-graphics-description

public MutableColor(Color color)
{
 set(color);
}
origin: us.ihmc/ihmc-graphics-description

public void setAmbientColor(MutableColor color3f)
{
 ambientColor.set(color3f);
}
origin: us.ihmc/ihmc-graphics-description

public MutableColor(float[] color)
{
 set(color[0], color[1], color[2]);
}
origin: us.ihmc/ihmc-graphics-description

public void setSpecularColor(MutableColor color3f)
{
 specularColor.set(color3f);
}
origin: us.ihmc/ihmc-graphics-description

public MutableColor(float x, float y, float z)
{
 set(x, y, z);
}
origin: us.ihmc/ihmc-graphics-description

public void set(MutableColor other)
{
 set(other.x, other.y, other.z);
}
origin: us.ihmc/ihmc-graphics-description

public MutableColor(MutableColor color)
{
 set(color);
}
origin: us.ihmc/ihmc-graphics-description

public void setDiffuseColor(MutableColor color3f)
{
 diffuseColor.set(color3f);
}
us.ihmc.graphicsDescription.colorMutableColorset

Popular methods of MutableColor

  • <init>
  • getX
  • getY
  • getZ
  • get
  • setX
  • setY
  • setZ

Popular in Java

  • Running tasks concurrently on multiple threads
  • requestLocationUpdates (LocationManager)
  • addToBackStack (FragmentTransaction)
  • getSharedPreferences (Context)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • JFileChooser (javax.swing)
  • JLabel (javax.swing)
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now