Hello dear devs.
I have polyline objects defined as :
polyline:
{
classificationType: Cesium.ClassificationType.TERRAIN,
positions: Cesium.Cartesian3.fromDegreesArray( points ),
width: 6,
material: new Cesium.PolylineOutlineMaterialProperty(
{
color: color.withAlpha( 0.6 ),
outlineWidth: 1,
outlineColor: Cesium.Color.BLACK.withAlpha( 0.40 )
} ),
clampToGround: true
}
and I would love if this can be interpolated somehow.
- is there a way to do so ?