示例#1
0
void Skeleton::addBoneLine(Joint a, Joint b){
    //draw the neck
    path.lineTo(a.getPoint());
    path.lineTo(b.getPoint());
    path.close();
}