1use ndarray as nd; 2/// Component for Linear Blend Skinning Weights 3pub struct LbsWeights { 4 pub lbs_weights: nd::Array2<f32>, 5}