Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-donarise committed Mar 29, 2024
1 parent 5378dca commit b8eb9df
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions plot/cube/cube.view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,19 +167,19 @@ namespace $.$$ {

} )

} )
} )

const converted = this.convert_to_axes(
points_x, points_y, points_z,
this.x_sort() as Prop_name,
this.y_sort() as Prop_name,
points_x, points_y, points_z,
this.x_sort() as Prop_name,
this.y_sort() as Prop_name,
this.z_sort() as Prop_name,
)

const points: Map< string, {x:number, y:number, z:number} > = new Map
const points: Map< string, { x: number, y: number, z: number } > = new Map
;[...labels].forEach( ( label, i ) => points.set( label, {
x: converted.x[ i],
y: converted.y[ i ] ,
x: converted.x[ i ],
y: converted.y[ i ],
z: converted.z[ i ],
}) )

Expand Down

0 comments on commit b8eb9df

Please sign in to comment.