visualize obj in space ?

Hello,

I
use the great CesiumJS for terrestrial ground datas representations but is it possible to
use CesiumJS to visualize an isolated 3D object in orbit in space ? Or a obj model online as we could do with offline MeshLab, Cloud Compare … ?

Unless
I made a mistake, I did not find an example in sandcastle.

Best regards.

All you have to do is just place the object in space. Here’s an example showing satellites and their orbits:

https://sandcastle.cesium.com/index.html?src=CZML.html

If your goal is to just visualize something without the globe, and not necessarily in a specific point in space, you can turn off the globe:

var viewer = new Cesium.Viewer(‘cesiumContainer’, {

globe : false

});

``