AnimatingStripe.addStripe() method

Add new stripe the the visulaization.

Signature:

addStripe(points: any[]): Stripe;

Parameters

ParameterDescription
pointsThe 3d point array represents the path of the stripe.

Returns:

Stripe

Example

stripe.addStripe(
  [
    [-70.29447174072266, -148.99954223632812, 13.434694290161133],
    [-70.29447174072266, 58.99954223632812, 13.434694290161133],
    [20.29447174072266, 58.99954223632812, 13.434694290161133],
    [20.29447174072266, -148.99954223632812, 13.434694290161133]
  ]
);