コード例 #1
0
ファイル: numeric.hpp プロジェクト: Ban-aan/THO78-Roborescue
 static void set_value( unsigned char value, bool point = false ){
    set_segments( segments[ value ] | point ? 0x80 : 0x00 );
 }
コード例 #2
0
Arm::Arm(vector<Segment*>segs, Point3f pos) {
    base = Point3f(0,0,0);
    set_segments(segs);
    set_base(pos);
}