Codota Logo
JavaFXMultiColorMeshBuilder.addBox
Code IndexAdd Codota to your IDE (free)

How to use
addBox
method
in
us.ihmc.javaFXToolkit.shapes.JavaFXMultiColorMeshBuilder

Best Java code snippets using us.ihmc.javaFXToolkit.shapes.JavaFXMultiColorMeshBuilder.addBox (Showing top 6 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: us.ihmc/IHMCJavaFXToolkit

/**
* Add a cube to this builder.
* @param size edge length of the cube.
* @param cubeOffset coordinates of the cube's center. Not modified.
* @param color color of the cube. Color accuracy depends on the color palette in use.
*/
public void addCube(double size, Tuple3d pointsOffset, Color color)
{
 addBox(size, size, size, pointsOffset, color);
}
origin: us.ihmc/ihmc-javafx-toolkit

/**
* Add a cube to this builder.
* @param size edge length of the cube.
* @param cubeOffset coordinates of the cube's center. Not modified.
* @param color color of the cube. Color accuracy depends on the color palette in use.
*/
public void addCube(double size, Tuple3DReadOnly pointsOffset, Color color)
{
 addBox(size, size, size, pointsOffset, color);
}
origin: us.ihmc/ihmc-javafx-toolkit

/**
* Add a cube to this builder.
* @param size edge length of the cube.
* @param cubeOffset coordinates of the cube's center. Not modified.
* @param color color of the cube. Color accuracy depends on the color palette in use.
*/
public void addCube(float size, Tuple3DReadOnly pointsOffset, Color color)
{
 addBox(size, size, size, pointsOffset, color);
}
origin: us.ihmc/IHMCJavaFXToolkit

/**
* Add a cube to this builder.
* @param size edge length of the cube.
* @param cubeOffset coordinates of the cube's center. Not modified.
* @param color color of the cube. Color accuracy depends on the color palette in use.
*/
public void addCube(float size, Tuple3f pointsOffset, Color color)
{
 addBox(size, size, size, pointsOffset, color);
}
origin: us.ihmc/IHMCJavaFXToolkit

/**
* Add a cube to this builder.
* @param size edge length of the cube.
* @param xOffset x-coordinate of the cube's center.
* @param yOffset y-coordinate of the cube's center.
* @param zOffset z-coordinate of the cube's center.
* @param color color of the cube. Color accuracy depends on the color palette in use.
*/
public void addCube(double size, double xOffset, double yOffset, double zOffset, Color color)
{
 addBox(size, size, size, new Point3d(xOffset, yOffset, zOffset), color);
}
origin: us.ihmc/ihmc-javafx-toolkit

/**
* Add a cube to this builder.
* @param size edge length of the cube.
* @param xOffset x-coordinate of the cube's center.
* @param yOffset y-coordinate of the cube's center.
* @param zOffset z-coordinate of the cube's center.
* @param color color of the cube. Color accuracy depends on the color palette in use.
*/
public void addCube(double size, double xOffset, double yOffset, double zOffset, Color color)
{
 addBox(size, size, size, new Point3D(xOffset, yOffset, zOffset), color);
}
us.ihmc.javaFXToolkit.shapesJavaFXMultiColorMeshBuilderaddBox

Javadoc

Add a box to this builder.

Popular methods of JavaFXMultiColorMeshBuilder

  • <init>
    Creates an empty mesh builder given a texture color palette to use.
  • generateMaterial
  • generateMesh
  • addLine
    Add a 3D line to this builder.
  • addMesh
    Rotates, translates, then combines the given mesh with the mesh contained in this builder.
  • addMultiLine
    Add a series of connected 3D lines to this builder.
  • clear
    Clears the meshes contained in this builder.
  • addCone
    Add a cone to this builder. Its axis is aligned with the z-axis and its top is the vertex with the h
  • addCube
    Add a cube to this builder.
  • addCylinder
    Add a cylinder to this builder. Its axis is aligned with the z-axis in its local coordinate system.
  • addPolygon
    Add a 2D polygon to this builder.
  • setColor
  • addPolygon,
  • setColor,
  • addPolyon,
  • addTetrahedron

Popular in Java

  • Running tasks concurrently on multiple threads
  • setRequestProperty (URLConnection)
  • putExtra (Intent)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
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