i128 -> i64
This commit is contained in:
parent
62aad160e4
commit
aa9475b1f4
@ -10,4 +10,4 @@ pub mod dr;
|
||||
pub mod math;
|
||||
pub mod sr1;
|
||||
|
||||
pub type IdType = i128;
|
||||
pub type IdType = i64;
|
||||
|
@ -77,7 +77,7 @@ impl EditorArea {
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
},
|
||||
}
|
||||
// 三角形
|
||||
EditorShapeEnum::Triangle(dir1, dir2) => {
|
||||
// 先平移坐标系
|
||||
@ -92,7 +92,7 @@ impl EditorArea {
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
},
|
||||
}
|
||||
EditorShapeEnum::Compound(shapes) => {
|
||||
for shape in shapes {
|
||||
match shape {
|
||||
@ -117,7 +117,7 @@ impl EditorArea {
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
},
|
||||
}
|
||||
// 三角形
|
||||
EditorShapeEnum::Triangle(dir1, dir2) => {
|
||||
// 先平移坐标系
|
||||
@ -132,10 +132,10 @@ impl EditorArea {
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
},
|
||||
}
|
||||
EditorShapeEnum::Compound(_) => {
|
||||
panic!("Compound in Compound");
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user