getW method

  1. @override
double getW(
  1. int index
)
override

Returns the w component of the item at the given index.

Implementation

@override
double getW(int index) {
  return data!.array[index * data!.stride + offset + 3].toDouble();
}