public class Point extends Base
描述:坐标
创建时间:2021-12-18 11:21
更新时间:暂无
| 限定符和类型 | 方法和说明 |
|---|---|
double |
getX() |
double |
getY() |
double |
getZ() |
static Point |
of(double x,
double y) |
static Point |
of(int x,
int y) |
static Point |
of(int x,
int y,
int z) |
void |
setX(double x) |
void |
setY(double y) |
void |
setZ(double z) |
public Point()
public Point(double x,
double y)
public Point(double x,
double y,
double z)
public static Point of(double x, double y)
public double getZ()
public void setZ(double z)
public double getX()
public void setX(double x)
public double getY()
public void setY(double y)
public static Point of(int x, int y)
public static Point of(int x, int y, int z)
Copyright © 2022. All rights reserved.