Skip to content
New issue

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

drawLines jsdoc fix #5767

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/framework/app-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -1698,8 +1698,9 @@ class AppBase extends EventHandler {
*
* @param {Vec3[]} positions - An array of points to draw lines between. The length of the
* array must be a multiple of 2.
* @param {Color[]} colors - An array of colors to color the lines. This must be the same
* length as the position array. The length of the array must also be a multiple of 2.
* @param {Color[] | Color} colors - An array of colors or a single color. If an array is
* specified, this must be the same length as the position array. The length of the array
* must also be a multiple of 2.
* @param {boolean} [depthTest] - Specifies if the lines are depth tested against the depth
* buffer. Defaults to true.
* @param {Layer} [layer] - The layer to render the lines into. Defaults to {@link LAYERID_IMMEDIATE}.
Expand Down