Ab |
Class | Description | |
---|---|---|
DXCubeMap | DXCubeMap class is used to create a cube map that can be used in DXEngine. Cube map is created from 6 textures - each for one side of the cube. | |
EffectMaterial | EffectMaterial is a material that uses the custom Effect to draw the material. | |
FaceColorMaterial | FaceColorMaterial can be used to render 3D objects with specifying color for each of its face (triangle). The face colors are provided with the FaceColors array (each array element provides Color4 for the triangle with the same index). When color's alpha value is below 0.01, then the whole triangle is discarded and will not be rendered. | |
HiddenLineMaterial | HiddenLineMaterial defines properties for 3D lines that will be rendered only in parts that should be hidden - line parts that are behind other 3D objects. | |
LineCapMaterial | LineCapMaterial is used to render a line cap. This materials should be created internally by the DXEngine and should not be used by the user. | |
LineMaterial | LineMaterial defines properties that define how 3D lines are drawn. | |
ModelColorLineMaterial | ModelColorLineMaterial class is similar to LineMaterial but instead of specifying a fixed line color, the color of the line color is get from the color of the Model's material. | |
MultiMapMaterial | MultiMapMaterial class defines a DXEngine's material that can use multiple texture maps. | |
PhysicallyBasedMaterial | PhysicallyBasedMaterial class defines a DXEngine's material that defines a material for Physically based rendering (PBR material). | |
PixelMaterial | PixelMaterial defines how 3D pixels are drawn with the PixelEffect. | |
PositionColoredLineMaterial | PositionColoredLineMaterial is a LineMaterial that contains additional properties that can be used to render 3D lines with different start and end colors. | |
StandardMaterial | StandardMaterial is a material that defines the standard properties to show the diffuse, specular and emissive material properties. | |
TextureMapInfo | TextureMapInfo class defines fields that describe one texture map. The class is used in IMultiMapMaterial that is used by MultiMapMaterial and PhysicallyBasedMaterial. | |
VertexColorMaterial | VertexColorMaterial can be used to render 3D objects with specifying color for each of its position. | |
WpfMaterial | WpfMaterial is a class that gets a WPF Material and converts it into a material that can be used by Ab3d.DXEngine. | |
XRayMaterial | XRayMaterial can be used to render the 3D object as as it would be photographed by an x-ray. |
Interface | Description | |
---|---|---|
IConstantBuffersCache | IConstantBuffersCache interface can be implemented by a Material that supports cashing constant buffers. | |
IDiffuseMaterial | IDiffuseMaterial interface defines properties that define a material that reflect diffuse light. | |
IDiffuseTextureMaterial | IDiffuseTextureMaterial interface defines properties that define a material with textures. | |
IEmissiveMaterial | IEmissiveMaterial interface defines properties that define a material that emit the light in a specifed color - the object is always in the EmissiveColor regardless of the lights. | |
IEnvironmentalMapMaterial | IEnvironmentalMapMaterial interface defines properties that define a material that show reflection of the environment defined by the EnvironmentalCubeMap. | |
IFaceColorMaterial | IFaceColorMaterial interface defines the FaceColorsShaderResourceView property that is used to specify vertex buffer that defines colors for each face (triangle). | |
IHiddenLineMaterial | IHiddenLineMaterial interface provides a property that specify if the hidden part of the line will be rendered. | |
ILineMaterial | ILineMaterial interface defines properties that define a line material - 3D object with this material will be rendered as wireframe. | |
ILinePattern | ILinePattern interface can be implemented by a Line material that support line patterns. | |
ILineRenderingTechnique | ILineRenderingTechnique interface is used to override the DXScene line rendering setting. | |
IMultiMapMaterial | IMultiMapMaterial interface defines TextureMaps property that is a list of TextureMapInfo objects and is used to define a material that uses multiple texture maps. | |
IPhysicallyBasedMaterial | IPhysicallyBasedMaterial interface defines basic values that are used with material for Physically based rendering (PBR material). | |
IPixelMaterial | IPixelMaterial interface defines properties that define a pixel material. | |
IPolyLine | IPolyLine interface is used by line materials that can define poly lines (connected line segments). | |
ISpecularMaterial | ISpecularMaterial interface defines properties that define specular properties of the material. | |
ITransparentMaterial | ITransparentMaterial interface defines HasTransparency property that specifies if this material need to be rendered with alpha blending enabled. | |
ITwoSidedMaterial | ITwoSidedMaterial interface defines IsTwoSided property that specifies if this material should be rendered on both front and back side. | |
IVertexColorMaterial | IVertexColorMaterial interface defines the VertexColorsVertexBufferBinding property that is used to specify vertex buffer that defines colors for each position. | |
IVertexScalesMaterial | IVertexSizeMaterial interface defines the VertexSizesVertexBufferBinding property that is used to specify vertex buffer that defines scales (as one float value) for each position. | |
IZBufferStateMaterial | IZBufferStateMaterial defines ReadZBuffer and WriteZBuffer properties that control how ZBuffer is used. |
Delegate | Description | |
---|---|---|
CalculateLineCapSizeDelegate | CalculateLineCapSizeDelegate is used for a delegate that calculates the size of line cap. |
Enumeration | Description | |
---|---|---|
DXCubeMapFlipBitmapType | Type of flip operaton that can be done on the bitmap | |
LineCap | LineCap enum defines the shape of the line at its start or its end. | |
TextureMapTypes | TextureMapTypes enum define possible types of texture maps. The enum is used by the TextureMapInfo class. |