Tabnine Logo
DirectionalLight.setInfluencingBounds
Code IndexAdd Tabnine to your IDE (free)

How to use
setInfluencingBounds
method
in
javax.media.j3d.DirectionalLight

Best Java code snippets using javax.media.j3d.DirectionalLight.setInfluencingBounds (Showing top 6 results out of 315)

origin: org.fudaa.framework.ebli/ebli-3d

public void setBounds(final Bounds _b) {
 l_.setInfluencingBounds(_b);
}
origin: com.googlecode.princeton-java-introduction/stdlib

/**
 * Adds a directional light of color col which shines in the direction vector (x, y, z)
 */
public static Light directionalLight (double x, double y, double z, Color col) {
  DirectionalLight light = new DirectionalLight();
  light.setColor(new Color3f(col));
  light.setInfluencingBounds(INFINITE_BOUNDS);
  light.setCapability(DirectionalLight.ALLOW_STATE_WRITE);
  light.setCapability(DirectionalLight.ALLOW_COLOR_WRITE);
  light.setEnable(true);
  BranchGroup bg = createBranchGroup();
  TransformGroup tg = createTransformGroup();
  tg.addChild(light);
  bg.addChild(tg);
  lightGroup.addChild(bg);
  Light l = new Light(bg, tg, light);
  l.setDirection(new Vector3D(x, y, z));
  return l;
}
origin: com.github.fracpete/princeton-java-stdlib

/**
 * Adds a directional light of color col which shines in the direction vector (x, y, z)
 */
public static Light directionalLight (double x, double y, double z, Color col) {
  DirectionalLight light = new DirectionalLight();
  light.setColor(new Color3f(col));
  light.setInfluencingBounds(INFINITE_BOUNDS);
  light.setCapability(DirectionalLight.ALLOW_STATE_WRITE);
  light.setCapability(DirectionalLight.ALLOW_COLOR_WRITE);
  light.setEnable(true);
  BranchGroup bg = createBranchGroup();
  TransformGroup tg = createTransformGroup();
  tg.addChild(light);
  bg.addChild(tg);
  lightGroup.addChild(bg);
  Light l = new Light(bg, tg, light);
  l.setDirection(new Vector3D(x, y, z));
  return l;
}
origin: org.fudaa.framework.ebli/ebli-3d

public BLumiereDirectionnelle(final Vector3f _vecteur, final Color _couleur) {
 couleur_ = _couleur;
 direction_ = _vecteur;
 l_ = new DirectionalLight(new Color3f(_couleur), _vecteur);
 l_.setCapability(Light.ALLOW_STATE_WRITE);
 l_.setCapability(Light.ALLOW_STATE_READ);
 l_.setCapability(Light.ALLOW_COLOR_WRITE);
 l_.setCapability(Light.ALLOW_COLOR_READ);
 l_.setCapability(DirectionalLight.ALLOW_DIRECTION_WRITE);
 l_.setCapability(DirectionalLight.ALLOW_DIRECTION_READ);
 l_.setCapability(Node.ALLOW_BOUNDS_READ);
 l_.setCapability(Node.ALLOW_BOUNDS_WRITE);
 l_.setCapability(Light.ALLOW_INFLUENCING_BOUNDS_READ);
 l_.setCapability(Light.ALLOW_INFLUENCING_BOUNDS_WRITE);
 setCapability(ALLOW_AUTO_COMPUTE_BOUNDS_READ);
 setCapability(ALLOW_AUTO_COMPUTE_BOUNDS_READ);
 l_.setInfluencingBounds(new BoundingSphere(new Point3d(), 100));
 for (int i = 18; i < 20; i++) {
  l_.setCapability(i);
 }
 addChild(l_);
 setName("Direction");
}
origin: eu.mihosoft.vrl/vrl

Vector3f lDir1 = new Vector3f(0f, -1.0f, -1.0f);
DirectionalLight lgt1 = new DirectionalLight(lColor1, lDir1);
lgt1.setInfluencingBounds(bounds);
objRoot.addChild(lgt1);
Vector3f lDir2 = new Vector3f(-1f, 1.0f, -1.0f);
DirectionalLight lgt2 = new DirectionalLight(lColor2, lDir2);
lgt2.setInfluencingBounds(bounds);
objRoot.addChild(lgt2);
origin: net.sf.jung/jung-3d

DirectionalLight lgt2 = new DirectionalLight(lColor2, lDir2);
AmbientLight ambient = new AmbientLight(lColor1);
lgt2.setInfluencingBounds(bounds);
ambient.setInfluencingBounds(bounds);
objRoot.addChild(lgt2);
javax.media.j3dDirectionalLightsetInfluencingBounds

Popular methods of DirectionalLight

  • <init>
  • setCapability
  • setColor
  • setEnable
  • getInfluencingBounds
  • setDirection

Popular in Java

  • Running tasks concurrently on multiple threads
  • requestLocationUpdates (LocationManager)
  • notifyDataSetChanged (ArrayAdapter)
  • setScale (BigDecimal)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • Kernel (java.awt.image)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • JList (javax.swing)
  • Best plugins for Eclipse
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