Merge pull request #15 from Code-World-9/dev-fix

fix: createGeometryFromData
This commit is contained in:
ethan 2024-05-29 10:56:07 +08:00 committed by GitHub
commit a8b7f2b46d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -870,6 +870,6 @@ export default class Base {
createGraphic(points: CesiumTypeOnly.Cartesian3[]): CesiumTypeOnly.Cartesian3[] {
//Abstract method that must be implemented by subclasses.
return [new this.cesium.Cartesian3()];
return points;
}
}