We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Object.defineProperties(OrthographicFrustum.prototype, { /** * Gets the orthographic projection matrix computed from the view frustum. * @memberof OrthographicFrustum.prototype * @type {Matrix4} * @readonly */ projectionMatrix: { get: function () { update(this); return this._offCenterFrustum.projectionMatrix; }, }, /** * Gets the orthographic projection matrix computed from the view frustum. * @memberof OrthographicFrustum.prototype * @type {OrthographicOffCenterFrustum} * @readonly * @private */ offCenterFrustum: { get: function () { update(this); return this._offCenterFrustum; }, }, });
No response
Browser: CesiumJS Version: Operating System:
The text was updated successfully, but these errors were encountered:
This appears to be the same for PerspectiveFrustum: https://github.com/CesiumGS/cesium/blob/main/packages/engine/Source/Core/PerspectiveFrustum.js#L291.
Sorry, something went wrong.
No branches or pull requests
What happened?
I found an obvious error in the documentation comments in OrthographicFrustum.js.
The documentation for offCenterFrustum is directly copied from projectionMatrix's description? This is clearly wrong.
Reproduction steps
No response
Sandcastle example
No response
Environment
Browser:
CesiumJS Version:
Operating System:
The text was updated successfully, but these errors were encountered: