public final class ImPlotLineFlags
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
Loop
the last and first point will be connected to form a closed loop
|
static int |
NoClip
markers (if displayed) on the edge of a plot will not be clipped
|
static int |
None
default
|
static int |
Segments
a line segment will be rendered from every two consecutive points
|
static int |
Shaded
a filled region between the line and horizontal origin will be rendered; use PlotShaded for more advanced cases
|
static int |
SkipNaN
NaNs values will be skipped instead of rendered as missing data
|
public static final int None
Definition: 0
public static final int Segments
Definition: 1 << 10
public static final int Loop
Definition: 1 << 11
public static final int SkipNaN
Definition: 1 << 12
public static final int NoClip
Definition: 1 << 13
public static final int Shaded
Definition: 1 << 14