コード例 #1
0
ファイル: Skeleton.cpp プロジェクト: jmarsico/ofxKinectV2-OSC
void Skeleton::addBoneLine(Joint a, Joint b){
    //draw the neck
    path.lineTo(a.getPoint());
    path.lineTo(b.getPoint());
    path.close();
}