GeoBlazor Pro

dymaptic.GeoBlazor.Pro

dymaptic.GeoBlazor.Pro.Model

MeshSize Class

A uniform size value or an object containing individual values width, height and depth.

public class MeshSize :
System.IEquatable<dymaptic.GeoBlazor.Pro.Model.MeshSize>

Inheritance System.Object 🡒 MeshSize

Implements System.IEquatable<MeshSize>

Constructors

MeshSize(Nullable, Nullable, Nullable) Constructor

Creates a new instance of the MeshSize class from individual values Width, Height and Depth.

public MeshSize(System.Nullable<double> width, System.Nullable<double> height, System.Nullable<double> depth);

Parameters

width System.Nullable<System.Double>

The width of the mesh.

height System.Nullable<System.Double>

The height of the mesh.

depth System.Nullable<System.Double>

The depth of the mesh.

MeshSize(Nullable) Constructor

Creates a new instance of the MeshSize class from a single uniform Value.

public MeshSize(System.Nullable<double> value);

Parameters

value System.Nullable<System.Double>

The single-value uniform size of the mesh.

Properties

MeshSize.Depth Property

The depth of the mesh.

public System.Nullable<double> Depth { get; set; }

Property Value

System.Nullable<System.Double>

MeshSize.Height Property

The height of the mesh.

public System.Nullable<double> Height { get; set; }

Property Value

System.Nullable<System.Double>

MeshSize.Value Property

The single-value uniform size of the mesh.

public System.Nullable<double> Value { get; set; }

Property Value

System.Nullable<System.Double>

MeshSize.Width Property

The width of the mesh.

public System.Nullable<double> Width { get; set; }

Property Value

System.Nullable<System.Double>