constPoint = require('../Point')
module.exports = function () {
// @Circle:atCenter()// @Circle:atMid()//// Get the center point of the sphere.//// Return// a Point//returnnewPoint(this.basis, {
x: this.circle.x,
y: this.circle.y,
z: this.circle.z
})
}