Skip to content

Commit

Permalink
Reduce default vector resolutions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carifio24 committed Jan 15, 2025
1 parent 51abe9c commit 92a167d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions glue_ar/common/scatter_gltf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def add_vectors_gltf(builder: GLTFBuilder,
tip_height: float,
shaft_radius: float,
tip_radius: float,
tip_resolution: int = 10,
shaft_resolution: int = 10,
tip_resolution: int = 6,
shaft_resolution: int = 6,
materials: Optional[dict[int, int]] = None,
mask: Optional[ndarray] = None):

Expand Down
4 changes: 2 additions & 2 deletions glue_ar/common/scatter_usd.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ def add_vectors_usd(builder: USDBuilder,
tip_height: float,
shaft_radius: float,
tip_radius: float,
tip_resolution: int = 10,
shaft_resolution: int = 10,
tip_resolution: int = 6,
shaft_resolution: int = 6,
colors: Optional[List[Tuple[int, int, int]]] = None,
mask: Optional[ndarray] = None):

Expand Down

0 comments on commit 92a167d

Please sign in to comment.