template<class T,class T2> void OPENGL_SCALAR_FIELD_2D<T,T2>::
Update_Contour_Curves()
{
    // not supported by these types
    PHYSBAM_WARNING(std::string("Dual-contouring is not supported for scalar fields of type ")+typeid(T).name());
    contour_curves.Delete_Pointers_And_Clean_Memory();
}
Exemplo n.º 2
0
void Set_Floating_Point_Exception_Handling(const bool enable,const bool division_by_zero,const bool invalid_operation,
                                           const bool overflow,const bool underflow,const bool inexact_result)
{
    // TODO: should be implemented
    // need to do something like _controlfp( _EM_INEXACT|_EM_UNDERFLOW, _MCW_EM )
    PHYSBAM_WARNING("PROCESS_UTILITIES::Set_Floating_Point_Exception_Handling undefined for windows");
}
Exemplo n.º 3
0
void Sleep(const double seconds)
{
    PHYSBAM_WARNING("PROCESS_UTILITIES::Sleep undefined for windows");
}
Exemplo n.º 4
0
void Set_Backtrace(const bool enable)
{
    PHYSBAM_WARNING("PROCESS_UTILITIES::Set_Debug_Backtrace undefined for windows");
}
Exemplo n.º 5
0
void Block_Interrupt_Signal(const bool block)
{
    PHYSBAM_WARNING("PROCESS_UTILITIES::Block_Interrupt_Signal undefined for windows");
}
Exemplo n.º 6
0
void Backtrace()
{
    PHYSBAM_WARNING("PROCESS_UTILITIES::Backtrace undefined for windows");
}