Class Layer
Information about a layer from a file being printed
Inherited Members
Namespace: DuetAPI.ObjectModel
Assembly: DuetAPI.dll
Syntax
public sealed class Layer : ModelObject, IModelObject, ICloneable, INotifyPropertyChanged, INotifyPropertyChanging
Properties
Duration
Duration of the layer (in s)
Declaration
public float Duration { get; set; }
Property Value
Type | Description |
---|---|
float |
Filament
Actual amount of filament extruded during this layer (in mm)
Declaration
public ModelCollection<float> Filament { get; }
Property Value
Type | Description |
---|---|
ModelCollection<float> |
FractionPrinted
Fraction of the file printed during this layer (0..1)
Declaration
public float FractionPrinted { get; set; }
Property Value
Type | Description |
---|---|
float |
Height
Height of the layer (in mm or 0 if unknown)
Declaration
public float Height { get; set; }
Property Value
Type | Description |
---|---|
float |
Temperatures
Last heater temperatures (in C or null if unknown)
Declaration
public ModelCollection<float?> Temperatures { get; }
Property Value
Type | Description |
---|---|
ModelCollection<float?> |