Skip to content

Commit

Permalink
fix(annotation): add setPointMarkerColor(vec3) overload (#475)
Browse files Browse the repository at this point in the history
It's listed in the docs, but was missing from the overload set.
  • Loading branch information
stuarteberg authored Jul 28, 2023
1 parent c6e6da5 commit 2f64d06
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/neuroglancer/annotation/type_handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ void setEndpointMarkerSize(float startSize, float endSize);
void setEndpointMarkerBorderWidth(float startSize, float endSize);
void setPointMarkerColor(vec4 color);
void setPointMarkerColor(vec3 color) { setPointMarkerColor(vec4(color, 1.0)); }
void setPointMarkerBorderColor(vec4 color);
void setPointMarkerSize(float size);
void setPointMarkerBorderWidth(float size);
Expand Down

0 comments on commit 2f64d06

Please sign in to comment.