12345678910111213141516 |
- const VectorCategory = {
- Line: {
- NormalLine: "NormalLine",
- BaseLine: "BaseLine",
- MeasureLine: "MeasureLine",
- GuideLine: "GuideLine",
- PositionLine: "PositionLine", //定位线。与定位法相关的
- },
- Point: {
- BasePoint: "BasePoint", //基准点
- TestPoint: "TestPoint", //待测点
- NormalPoint: "NormalPoint", //正常点
- TestBasePoint: "TestBasePoint", //待测基准点
- },
- };
- export default VectorCategory;
|