Esempio n. 1
0
static boost::python::tuple intersect_422b4819a67dd604f95a289c2a33664b( ::OSG::Plane const & inst, ::OSG::Line const & l ){
    OSG::Point<float, 3u> intersection2;
    bool result = inst.intersect(l, intersection2);
    return bp::make_tuple( result, intersection2 );
}
Esempio n. 2
0
static boost::python::tuple intersect_b2ddef634f93d137b320d331bba0a7e9( ::OSG::Plane const & inst, ::OSG::Line const & l ){
    float t2;
    bool result = inst.intersect(l, t2);
    return bp::make_tuple( result, t2 );
}
Esempio n. 3
0
static boost::python::tuple intersect_1ae0b3229395ec6fea05959d6e1004c7( ::OSG::Plane const & inst, ::OSG::Plane const & pl ){
    OSG::Line intersection2;
    bool result = inst.intersect(pl, intersection2);
    return bp::make_tuple( result, intersection2 );
}