You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { Vector3 } from "@babylonjs/core"; |
|
import { Type } from "class-transformer"; |
|
import { MarkData } from "../mark-data"; |
|
|
|
/** |
|
* 区域类 |
|
*/ |
|
export class MarkData_Area extends MarkData { |
|
/** |
|
* 点位 |
|
*/ |
|
@Type(() => Vector3) |
|
pointData: Vector3[]; |
|
|
|
/** |
|
* 颜色 |
|
*/ |
|
color: string = "#FF666D"; |
|
}
|
|
|