Skip to content

Commit 064944c

Browse files
committed
fix(soba/abstractions): edges should be segmented
1 parent 420011c commit 064944c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/soba/abstractions/src/lib/edges.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class NgtsEdges {
3434
options = input(defaultOptions, { transform: mergeInputs(defaultOptions) });
3535
private parameters = omit(this.options, ['threshold', 'geometry']);
3636

37-
protected lineOptions = computed(() => ({ ...this.parameters(), raycast: () => null }));
37+
protected lineOptions = computed(() => ({ ...this.parameters(), segments: true, raycast: () => null }));
3838
protected tmpPoints = [0, 0, 0, 1, 0, 0];
3939

4040
line = viewChild.required(NgtsLine);

0 commit comments

Comments
 (0)