@Generated(value="org.realityforge.webtack")
@JsType(isNative=true,
namespace="<global>",
name="Object")
public interface DOMPointInit
Modifier and Type | Interface and Description |
---|---|
static interface |
DOMPointInit.Builder
The DOMPointInit dictionary is used to provide the values of the coordinates and perspective when creating and JSONifying a DOMPoint or DOMPointReadOnly object.
|
Modifier and Type | Method and Description |
---|---|
static DOMPointInit.Builder |
create() |
void |
setW(double w)
The DOMPointInit dictionary's w property is used to specify the w perspective value of a point in space when either creating or serializing to JSON a DOMPoint or DOMPointReadOnly object.
|
void |
setX(double x)
The DOMPointInit dictionary's x property is used to specify the x component of a point in 2D or 3D space when either creating or serializing a DOMPoint or DOMPointReadOnly.
|
void |
setY(double y)
The DOMPointInit dictionary's y property is used to specify the y-coordinate of a point in 2D or 3D space when either creating or serializing to JSON a DOMPoint or DOMPointReadOnly object.
|
void |
setZ(double z)
The DOMPointInit dictionary's z property is used to specify the z-coordinate of a point in 2D or 3D space when either creating or serializing to JSON a DOMPoint or DOMPointReadOnly object.
|
double |
w()
The DOMPointInit dictionary's w property is used to specify the w perspective value of a point in space when either creating or serializing to JSON a DOMPoint or DOMPointReadOnly object.
|
double |
x()
The DOMPointInit dictionary's x property is used to specify the x component of a point in 2D or 3D space when either creating or serializing a DOMPoint or DOMPointReadOnly.
|
double |
y()
The DOMPointInit dictionary's y property is used to specify the y-coordinate of a point in 2D or 3D space when either creating or serializing to JSON a DOMPoint or DOMPointReadOnly object.
|
double |
z()
The DOMPointInit dictionary's z property is used to specify the z-coordinate of a point in 2D or 3D space when either creating or serializing to JSON a DOMPoint or DOMPointReadOnly object.
|
@JsOverlay @Nonnull static DOMPointInit.Builder create()
@JsProperty(name="w") double w()
@JsProperty void setW(double w)
@JsProperty(name="x") double x()
@JsProperty void setX(double x)
@JsProperty(name="y") double y()
@JsProperty void setY(double y)
@JsProperty(name="z") double z()
@JsProperty void setZ(double z)