setD method

  1. @override
BoneInfoD setD(
  1. BoneInfoD o
)
override

Copies the fields of o into this instance and returns this.

Implementation

@override
BoneInfoD setD(BoneInfoD o) {
  name = o.name;
  parent = o.parent;
  return this;
}