Uses of Class
eu.svjatoslav.sixth.e3d.math.Transform
Packages that use Transform
Package
Description
Graphical user interface components for the Sixth 3D engine.
Provides a simple text editor component rendered in 3D space.
Sixth 3D engine.
Composite shapes that group multiple primitives into compound 3D objects.
Base class and utilities for composite shapes.
Sixth 3D engine.
Wireframe composite shapes built from Line primitives.
-
Uses of Transform in eu.svjatoslav.sixth.e3d.gui
Methods in eu.svjatoslav.sixth.e3d.gui that return TransformModifier and TypeMethodDescriptionCamera.getTransform()Returns the transform containing this camera's location and orientation.Constructors in eu.svjatoslav.sixth.e3d.gui with parameters of type Transform -
Uses of Transform in eu.svjatoslav.sixth.e3d.gui.textEditorComponent
Constructors in eu.svjatoslav.sixth.e3d.gui.textEditorComponent with parameters of type TransformModifierConstructorDescriptionTextEditComponent(Transform transform, ViewPanel viewPanel, Point2D sizeInWorldCoordinates, LookAndFeel lookAndFeel) Creates a new text editor component positioned in 3D space. -
Uses of Transform in eu.svjatoslav.sixth.e3d.math
Methods in eu.svjatoslav.sixth.e3d.math that return TransformModifier and TypeMethodDescriptionTransform.clone()Creates a copy of this transform with cloned translation and rotation.static TransformTransform.fromAngles(double x, double y, double z, double yaw, double pitch, double roll) Creates a transform with translation and full Euler rotation.static TransformTransform.fromAngles(Point3D translation, double yaw, double pitch) Creates a transform with the specified translation and rotation from Euler angles.Transform.invalidateCache()Invalidates the cached rotation matrix.Transform.set(double x, double y, double z, double yaw, double pitch, double roll) Sets both translation and rotation from Euler angles.Transform.setTranslation(Point3D translation) Sets the translation for this transform by copying the values from the given point.Methods in eu.svjatoslav.sixth.e3d.math with parameters of type TransformModifier and TypeMethodDescriptionvoidTransformStack.addTransform(Transform transform) Pushes a transform onto the stack. -
Uses of Transform in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite
Constructors in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite with parameters of type TransformModifierConstructorDescriptionTexturedRectangle(Transform transform) Creates a textured rectangle with only a transform, without initializing geometry.TexturedRectangle(Transform transform, int width, int height, int maxTextureUpscale) Creates a textured rectangle where the texture resolution matches the world-space size.TexturedRectangle(Transform transform, int width, int height, int textureWidth, int textureHeight, int maxTextureUpscale) Creates a fully initialized textured rectangle with independent world-space size and texture resolution. -
Uses of Transform in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.base
Methods in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.base that return TransformModifier and TypeMethodDescriptionAbstractCompositeShape.getTransform()Returns this composite's transform (position and orientation).Methods in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.base with parameters of type TransformModifier and TypeMethodDescriptionAbstractCompositeShape.setTransform(Transform transform) Sets the transform for this composite shape.Constructors in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.base with parameters of type TransformModifierConstructorDescriptionAbstractCompositeShape(Transform transform) Creates a composite shape with the specified transform (position and orientation). -
Uses of Transform in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.textcanvas
Constructors in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.textcanvas with parameters of type TransformModifierConstructorDescriptionTextCanvas(Transform location, TextPointer dimensions, Color foregroundColor, Color backgroundColor) Creates a blank text canvas with the specified dimensions.TextCanvas(Transform location, String text, Color foregroundColor, Color backgroundColor) Creates a text canvas initialized with the given text string. -
Uses of Transform in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.wireframe
Constructors in eu.svjatoslav.sixth.e3d.renderer.raster.shapes.composite.wireframe with parameters of type TransformModifierConstructorDescriptionGrid2D(Transform transform, Rectangle rectangle, int xDivisionCount, int yDivisionCount, LineAppearance appearance) Constructs a 2D grid in the XY plane with the specified dimensions and number of divisions.