You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to draw texts inside the view. But in three.js, this requires the use of an addon. In meshcat, there was an implementation for texts using Texture, but it results in rasterized text, which is not adequate for my use case.
In the three.js library, to draw texts one either imports an addon such as:
import { TextGeometry } from 'three/addons/geometries/TextGeometry.js';
Or it suggests using another JS package called Troika.
I figured out how to implement distinct geometries, such as knots and planes. But I couldn't get the TextGeometry to work. Which I'm guessing is due to the fact that it is not available in the original meshcat.
The text was updated successfully, but these errors were encountered:
I'm trying to draw texts inside the view. But in three.js, this requires the use of an addon. In meshcat, there was an implementation for texts using Texture, but it results in rasterized text, which is not adequate for my use case.
In the three.js library, to draw texts one either imports an addon such as:
Or it suggests using another JS package called Troika.
I figured out how to implement distinct geometries, such as knots and planes. But I couldn't get the TextGeometry to work. Which I'm guessing is due to the fact that it is not available in the original meshcat.
The text was updated successfully, but these errors were encountered: