Material appearance on primitives vs entities

Hi,

I am using ol3-cesium for 2D and synching of vector features between Openlayers (2D) and Cesium (3D).

Ol3-Cesium makes use of primitives and groundPrimitives instead of entities. However, i would like my primitives to have the same "look" as entities.

If I compare for example:

(the 5 boxes above eachother -translucent or solid )

with

(include some extrusion)

They appear very different..

I tried tweaking around with the PerInstanceColorAppearance settings based on https://cesiumjs.org/tutorials/Geometry-and-Appearances/, but I just dont seem to be able to approach these 5 boxes from the first example- which are created as entities.

Anybody knows how I can get the same look with primitives?

Hello,

You can see how to use primitives to create the same geometry and appearances example in the development examples included in the Cesium download.

Here is the example on the website: http://cesiumjs.org/Cesium/Apps/Sandcastle/index.html?src=development/Geometry%20and%20Appearances.html&label=Showcases

However, unless you have a good reason, I would recommend using the Entity API instead of the Primitives API because it handles a lot of things like setting the correct vertexFormat and material properties for you.

Best,

Hannah

Hi Hannah,

Thanks a lot for your quick reply, with the example I figured out the right settings on Primitive, GeometryInstance and Appearance!

I had found the current Geometry&Appearance (based on entities) example in the sandcastle but its good to know that in the dev folder the legacy examples are still contained.

Best,
Lucas