Click or drag to resize
Ab4d.SharpEngine logo

LineBaseMaterial Class

LineBaseMaterial is an abstract base material that is used by LineMaterial and PolyLineMaterial.
Inheritance Hierarchy
SystemObject
  Ab4d.SharpEngine.CoreComponentBase
    Ab4d.SharpEngine.CoreInitializedSceneComponent
      Ab4d.SharpEngine.MaterialsMaterial
        Ab4d.SharpEngine.MaterialsLineBaseMaterial
          Ab4d.SharpEngine.MaterialsLineMaterial
          Ab4d.SharpEngine.MaterialsPolyLineMaterial

Namespace: Ab4d.SharpEngine.Materials
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public abstract class LineBaseMaterial : Material, 
	ILineMaterial, ITransparentMaterial, IHiddenLineMaterial, ILineCapMaterial

The LineBaseMaterial type exposes the following members.

Constructors
Properties
 NameDescription
Public propertyDepthBias Gets a float that specifies a bias that is used when doing a depth test. The value is subtracted from the depth value of the line. Subtracting the value moves the line closer to the camera. The depth values are in range from 0 (at the near camera plane) to 1 (at the far camera plane). Usually a 0.0005 is a good value for most of the cases.
Public propertyEndLineCap Gets or sets the LineCap (shape) that is rendered at the end of the line. Default value is LineCap.Flat.
Public propertyHasTransparency Gets a boolean that specifies if this material is semi-transparent and needs to be alpha blended with the scene. This is true when LineColor's Alpha value is less than 1.
Public propertyIsHiddenLine Gets or sets a boolean that specifies if line with this material will be rendered when it is in front of other 3D objects (IsHiddenLine is false), or when the line is hidden - is behind other 3D objects (IsHiddenLine is true).
Public propertyLineColor Gets or sets the color of the line that is determined from the WpfModel material. Default color is black.
Public propertyLineThickness Gets or sets the thickness of the line in screen space units. This value is scaled with DPI scale factor. Default line thickness is 1.
Public propertyStartLineCap Gets or sets the LineCap (shape) that is rendered at the start of the line. Default value is LineCap.Flat.
Top
Methods
 NameDescription
Public methodGetDetailsText GetDetailsText adds string that writes details about this Material into the specified StringBuilder.
(Overrides MaterialGetDetailsText(StringBuilder, Boolean, Boolean, Boolean))
Protected methodOnInitializeSceneResources Initializes resources with the specified Scene and GpuDevice. This method can be overriden and is called from InitializeSceneResources(Scene) method.
(Overrides MaterialOnInitializeSceneResources(Scene, VulkanDevice))
Public methodUpdate Update method is called before every rendering and updates the graphics buffers and states objects based on the current value of properties in this Material.
(Overrides MaterialUpdate)
Top
See Also