├── Makefile ├── clean_wc.sh ├── include └── delfem │ ├── cad │ ├── brep.h │ ├── brep2d.h │ ├── cad_edge2d_polyline.h │ ├── cad_elem2d.h │ ├── cad_elem3d.h │ ├── contact_target_cad3d.h │ ├── objset_cad.h │ └── truss2d.h │ ├── cad2d_interface.h │ ├── cad_com.h │ ├── cad_obj2d.h │ ├── cad_obj2d_move.h │ ├── cad_obj3d.h │ ├── camera.h │ ├── complex.h │ ├── designer2d_analysis.h │ ├── drawer.h │ ├── drawer_cad.h │ ├── drawer_cad3d.h │ ├── drawer_field.h │ ├── drawer_field_edge.h │ ├── drawer_field_face.h │ ├── drawer_field_image_based_flow_vis.h │ ├── drawer_field_streamline.h │ ├── drawer_field_vector.h │ ├── drawer_gl_utility.h │ ├── drawer_msh.h │ ├── elem_ary.h │ ├── eqnsys.h │ ├── eqnsys_fluid.h │ ├── eqnsys_scalar.h │ ├── eqnsys_shell.h │ ├── eqnsys_solid.h │ ├── eval.h │ ├── femeqn │ ├── eqn_advection_diffusion.h │ ├── eqn_diffusion.h │ ├── eqn_dkt.h │ ├── eqn_helmholtz.h │ ├── eqn_hyper.h │ ├── eqn_linear_solid2d.h │ ├── eqn_linear_solid3d.h │ ├── eqn_navier_stokes.h │ ├── eqn_poisson.h │ ├── eqn_st_venant.h │ ├── eqn_stokes.h │ ├── ker_emat_bar.h │ ├── ker_emat_hex.h │ ├── ker_emat_quad.h │ ├── ker_emat_tet.h │ └── ker_emat_tri.h │ ├── femls │ ├── linearsystem_field.h │ ├── linearsystem_fieldsave.h │ ├── zlinearsystem.h │ ├── zpreconditioner.h │ └── zsolver_ls_iter.h │ ├── field.h │ ├── field_value_setter.h │ ├── field_world.h │ ├── glut_utility.h │ ├── indexed_array.h │ ├── linearsystem_interface_eqnsys.h │ ├── ls │ ├── eigen_lanczos.h │ ├── linearsystem.h │ ├── linearsystem_interface_solver.h │ ├── preconditioner.h │ └── solver_ls_iter.h │ ├── matvec │ ├── bcflag_blk.h │ ├── diamat_blk.h │ ├── ker_mat.h │ ├── mat_blkcrs.h │ ├── matdia_blkcrs.h │ ├── matdiafrac_blkcrs.h │ ├── matdiainv_blkdia.h │ ├── matfrac_blkcrs.h │ ├── matprecond_blk.h │ ├── matprolong_blkcrs.h │ ├── ordering_blk.h │ ├── solver_mat_iter.h │ ├── solver_mg.h │ ├── vector_blk.h │ ├── zmat_blkcrs.h │ ├── zmatdia_blkcrs.h │ ├── zmatdiafrac_blkcrs.h │ ├── zmatprecond_blk.h │ ├── zsolver_mat_iter.h │ └── zvector_blk.h │ ├── mesh3d.h │ ├── mesh_interface.h │ ├── mesh_primitive.h │ ├── mesher2d.h │ ├── mesher2d_edit.h │ ├── msh │ ├── meshkernel2d.h │ ├── meshkernel3d.h │ └── surface_mesh_reader.h │ ├── node_ary.h │ ├── objset.h │ ├── quaternion.h │ ├── rigid │ ├── linearsystem_rigid.h │ ├── linearsystem_rigidfield.h │ └── rigidbody.h │ ├── serialize.h │ ├── spatial_hash_grid2d.h │ ├── spatial_hash_grid3d.h │ ├── tri_ary_topology.h │ ├── uglyfont.h │ ├── vector2d.h │ └── vector3d.h ├── make_with_mingw.bat ├── src ├── cad │ ├── brep.cpp │ ├── brep2d.cpp │ ├── cad_edge2d_polyline.cpp │ ├── cad_elem2d.cpp │ ├── cad_elem3d.cpp │ ├── cad_obj2d.cpp │ ├── cad_obj2d_move.cpp │ ├── cad_obj3d.cpp │ ├── contact_target_cad3d.cpp │ ├── drawer_cad.cpp │ ├── drawer_cad3d.cpp │ └── truss2d.cpp ├── com │ ├── drawer.cpp │ ├── drawer_gl_utility.cpp │ ├── quaternion.cpp │ ├── spatial_hash_grid2d.cpp │ ├── spatial_hash_grid3d.cpp │ ├── tri_ary_topology.cpp │ ├── uglyfont.cpp │ └── vector3d.cpp ├── femeqn │ ├── eqn_advection_diffusion.cpp │ ├── eqn_diffusion.cpp │ ├── eqn_dkt.cpp │ ├── eqn_helmholtz.cpp │ ├── eqn_hyper.cpp │ ├── eqn_linear_solid2d.cpp │ ├── eqn_linear_solid3d.cpp │ ├── eqn_navier_stokes.cpp │ ├── eqn_poisson.cpp │ ├── eqn_st_venant.cpp │ ├── eqn_stokes.cpp │ ├── eqnsys.cpp │ ├── eqnsys_fluid.cpp │ ├── eqnsys_scalar.cpp │ ├── eqnsys_shell.cpp │ ├── eqnsys_solid.cpp │ └── ker_emat_tri.cpp ├── femfield │ ├── drawer_field.cpp │ ├── drawer_field_edge.cpp │ ├── drawer_field_face.cpp │ ├── drawer_field_image_based_flow_vis.cpp │ ├── drawer_field_streamline.cpp │ ├── drawer_field_vector.cpp │ ├── elem_ary.cpp │ ├── eval.cpp │ ├── field.cpp │ ├── field_value_setter.cpp │ ├── field_world.cpp │ └── node_ary.cpp ├── femls │ ├── linearsystem_field.cpp │ ├── linearsystem_fieldsave.cpp │ ├── zlinearsystem.cpp │ └── zsolver_ls_iter.cpp ├── ls │ ├── eigen_lanczos.cpp │ ├── linearsystem.cpp │ ├── preconditioner.cpp │ └── solver_ls_iter.cpp ├── matvec │ ├── mat_blkcrs.cpp │ ├── matdia_blkcrs.cpp │ ├── matdiafrac_blkcrs.cpp │ ├── matdiainv_blkdia.cpp │ ├── matfrac_blkcrs.cpp │ ├── matprolong_blkcrs.cpp │ ├── ordering_blk.cpp │ ├── solver_mat_iter.cpp │ ├── solver_mg.cpp │ ├── vector_blk.cpp │ ├── zmat_blkcrs.cpp │ ├── zmatdia_blkcrs.cpp │ ├── zmatdiafrac_blkcrs.cpp │ ├── zsolver_mat_iter.cpp │ └── zvector_blk.cpp ├── msh │ ├── drawer_msh.cpp │ ├── mesh3d.cpp │ ├── mesh3d_extrude.cpp │ ├── mesher2d.cpp │ ├── mesher2d_edit.cpp │ ├── mesher3d.cpp │ ├── meshkernel2d.cpp │ ├── meshkernel3d.cpp │ └── surface_mesh_reader.cpp └── rigid │ ├── linearsystem_rigid.cpp │ ├── linearsystem_rigidfield.cpp │ └── rigidbody.cpp ├── test_glut ├── Makefile ├── cad2d_edit │ ├── cad.xcodeproj │ │ └── project.pbxproj │ └── main.cpp ├── cad3d │ ├── Makefile │ ├── cad_view.xcodeproj │ │ └── project.pbxproj │ └── main.cpp ├── cad_view │ ├── Makefile │ ├── cad_view.xcodeproj │ │ └── project.pbxproj │ └── main.cpp ├── dkt2d │ ├── Makefile │ ├── dkt2d.xcodeproj │ │ └── project.pbxproj │ └── main.cpp ├── field_evaluate │ ├── Makefile │ ├── field_evaluate.xcodeproj │ │ └── project.pbxproj │ ├── grad_hex.inp │ ├── grad_tet.inp │ └── main.cpp ├── fluid2d │ ├── Makefile │ ├── fluid2d.xcodeproj │ │ └── project.pbxproj │ └── main.cpp ├── helmholtz2d │ ├── Makefile │ ├── helmholtz2d.xcodeproj │ │ └── project.pbxproj │ └── main.cpp ├── hyper3d │ ├── Makefile │ ├── hyper3d.xcodeproj │ │ └── project.pbxproj │ └── main.cpp ├── input_file │ ├── FE_5k.ply │ ├── bimba_cvd_5k.off │ ├── cylinder_hex.msh │ ├── cylinder_tet.msh │ ├── cylinder_tet2.msh │ ├── hexa_tri.msh │ ├── pig.gmv │ ├── rect_quad.msh │ ├── rect_tri.msh │ ├── rect_tri2.msh │ ├── rect_tri3.msh │ └── redtsolid_tet.msh ├── make_all_tests_with_mingw.bat ├── msh_view │ ├── Makefile │ ├── hoge.txt │ ├── main.cpp │ └── msh_view.xcodeproj │ │ └── project.pbxproj ├── rigid │ ├── Makefile │ ├── main.cpp │ └── rigid.xcodeproj │ │ └── project.pbxproj ├── scalar2d │ ├── Makefile │ ├── main.cpp │ └── scalar2d.xcodeproj │ │ └── project.pbxproj ├── scalar3d │ ├── Makefile │ ├── main.cpp │ └── scalar3d.xcodeproj │ │ └── project.pbxproj ├── solid2d │ ├── Makefile │ ├── main.cpp │ └── solid2d.xcodeproj │ │ └── project.pbxproj ├── solid2d_thermal │ ├── Makefile │ ├── main.cpp │ └── solid2d_thermal.xcodeproj │ │ └── project.pbxproj ├── solid3d │ ├── Makefile │ ├── main.cpp │ └── solid3d.xcodeproj │ │ └── project.pbxproj ├── stvk_rigid │ ├── Makefile │ ├── main.cpp │ └── stvk_rigid.xcodeproj │ │ └── project.pbxproj └── tests.xcodeproj │ └── project.pbxproj ├── test_glut_lowlev └── solid2d │ ├── main.cpp │ └── solid.xcodeproj │ └── project.pbxproj └── test_qt ├── fluid2d ├── Makefile ├── dialog_fluid2d.cpp ├── dialog_fluid2d.h ├── dialog_fluid2d.ui ├── fluid2d.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── fluid2d │ │ ├── PkgInfo │ │ └── Resources │ │ └── empty.lproj ├── fluid2d.pro ├── fluid2d.pro.user ├── glwidget.cpp ├── glwidget.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── ui_dialog_fluid2d.h ├── ui_dialog_solid2d_viewsetting.h └── ui_mainwindow.h ├── scalar2d ├── Makefile ├── dialog_scalar2d.cpp ├── dialog_scalar2d.h ├── dialog_scalar2d.ui ├── glwidget.cpp ├── glwidget.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── scalar2d.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── scalar2d │ │ ├── PkgInfo │ │ └── Resources │ │ └── empty.lproj ├── scalar2d.pro ├── scalar2d.pro.user ├── ui_dialog_scalar2d.h └── ui_mainwindow.h └── solid2d ├── Makefile ├── dialog_solid2d.cpp ├── dialog_solid2d.h ├── dialog_solid2d.ui ├── dialog_solid2d_viewsetting.cpp ├── dialog_solid2d_viewsetting.h ├── dialog_solid2d_viewsetting.ui ├── glwidget_solid2d.cpp ├── glwidget_solid2d.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── solid2d.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── solid2d │ ├── PkgInfo │ └── Resources │ └── empty.lproj ├── solid2d.pro ├── solid2d.pro.user ├── ui_dialog_solid2d.h ├── ui_dialog_solid2d_viewsetting.h └── ui_mainwindow.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/Makefile -------------------------------------------------------------------------------- /clean_wc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/clean_wc.sh -------------------------------------------------------------------------------- /include/delfem/cad/brep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad/brep.h -------------------------------------------------------------------------------- /include/delfem/cad/brep2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad/brep2d.h -------------------------------------------------------------------------------- /include/delfem/cad/cad_edge2d_polyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad/cad_edge2d_polyline.h -------------------------------------------------------------------------------- /include/delfem/cad/cad_elem2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad/cad_elem2d.h -------------------------------------------------------------------------------- /include/delfem/cad/cad_elem3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad/cad_elem3d.h -------------------------------------------------------------------------------- /include/delfem/cad/contact_target_cad3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad/contact_target_cad3d.h -------------------------------------------------------------------------------- /include/delfem/cad/objset_cad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad/objset_cad.h -------------------------------------------------------------------------------- /include/delfem/cad/truss2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad/truss2d.h -------------------------------------------------------------------------------- /include/delfem/cad2d_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad2d_interface.h -------------------------------------------------------------------------------- /include/delfem/cad_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad_com.h -------------------------------------------------------------------------------- /include/delfem/cad_obj2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad_obj2d.h -------------------------------------------------------------------------------- /include/delfem/cad_obj2d_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad_obj2d_move.h -------------------------------------------------------------------------------- /include/delfem/cad_obj3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/cad_obj3d.h -------------------------------------------------------------------------------- /include/delfem/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/camera.h -------------------------------------------------------------------------------- /include/delfem/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/complex.h -------------------------------------------------------------------------------- /include/delfem/designer2d_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/designer2d_analysis.h -------------------------------------------------------------------------------- /include/delfem/drawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer.h -------------------------------------------------------------------------------- /include/delfem/drawer_cad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_cad.h -------------------------------------------------------------------------------- /include/delfem/drawer_cad3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_cad3d.h -------------------------------------------------------------------------------- /include/delfem/drawer_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_field.h -------------------------------------------------------------------------------- /include/delfem/drawer_field_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_field_edge.h -------------------------------------------------------------------------------- /include/delfem/drawer_field_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_field_face.h -------------------------------------------------------------------------------- /include/delfem/drawer_field_image_based_flow_vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_field_image_based_flow_vis.h -------------------------------------------------------------------------------- /include/delfem/drawer_field_streamline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_field_streamline.h -------------------------------------------------------------------------------- /include/delfem/drawer_field_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_field_vector.h -------------------------------------------------------------------------------- /include/delfem/drawer_gl_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_gl_utility.h -------------------------------------------------------------------------------- /include/delfem/drawer_msh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/drawer_msh.h -------------------------------------------------------------------------------- /include/delfem/elem_ary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/elem_ary.h -------------------------------------------------------------------------------- /include/delfem/eqnsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/eqnsys.h -------------------------------------------------------------------------------- /include/delfem/eqnsys_fluid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/eqnsys_fluid.h -------------------------------------------------------------------------------- /include/delfem/eqnsys_scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/eqnsys_scalar.h -------------------------------------------------------------------------------- /include/delfem/eqnsys_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/eqnsys_shell.h -------------------------------------------------------------------------------- /include/delfem/eqnsys_solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/eqnsys_solid.h -------------------------------------------------------------------------------- /include/delfem/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/eval.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_advection_diffusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_advection_diffusion.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_diffusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_diffusion.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_dkt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_dkt.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_helmholtz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_helmholtz.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_hyper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_hyper.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_linear_solid2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_linear_solid2d.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_linear_solid3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_linear_solid3d.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_navier_stokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_navier_stokes.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_poisson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_poisson.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_st_venant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_st_venant.h -------------------------------------------------------------------------------- /include/delfem/femeqn/eqn_stokes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/eqn_stokes.h -------------------------------------------------------------------------------- /include/delfem/femeqn/ker_emat_bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/ker_emat_bar.h -------------------------------------------------------------------------------- /include/delfem/femeqn/ker_emat_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/ker_emat_hex.h -------------------------------------------------------------------------------- /include/delfem/femeqn/ker_emat_quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/ker_emat_quad.h -------------------------------------------------------------------------------- /include/delfem/femeqn/ker_emat_tet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/ker_emat_tet.h -------------------------------------------------------------------------------- /include/delfem/femeqn/ker_emat_tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femeqn/ker_emat_tri.h -------------------------------------------------------------------------------- /include/delfem/femls/linearsystem_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femls/linearsystem_field.h -------------------------------------------------------------------------------- /include/delfem/femls/linearsystem_fieldsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femls/linearsystem_fieldsave.h -------------------------------------------------------------------------------- /include/delfem/femls/zlinearsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femls/zlinearsystem.h -------------------------------------------------------------------------------- /include/delfem/femls/zpreconditioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femls/zpreconditioner.h -------------------------------------------------------------------------------- /include/delfem/femls/zsolver_ls_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/femls/zsolver_ls_iter.h -------------------------------------------------------------------------------- /include/delfem/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/field.h -------------------------------------------------------------------------------- /include/delfem/field_value_setter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/field_value_setter.h -------------------------------------------------------------------------------- /include/delfem/field_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/field_world.h -------------------------------------------------------------------------------- /include/delfem/glut_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/glut_utility.h -------------------------------------------------------------------------------- /include/delfem/indexed_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/indexed_array.h -------------------------------------------------------------------------------- /include/delfem/linearsystem_interface_eqnsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/linearsystem_interface_eqnsys.h -------------------------------------------------------------------------------- /include/delfem/ls/eigen_lanczos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/ls/eigen_lanczos.h -------------------------------------------------------------------------------- /include/delfem/ls/linearsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/ls/linearsystem.h -------------------------------------------------------------------------------- /include/delfem/ls/linearsystem_interface_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/ls/linearsystem_interface_solver.h -------------------------------------------------------------------------------- /include/delfem/ls/preconditioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/ls/preconditioner.h -------------------------------------------------------------------------------- /include/delfem/ls/solver_ls_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/ls/solver_ls_iter.h -------------------------------------------------------------------------------- /include/delfem/matvec/bcflag_blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/bcflag_blk.h -------------------------------------------------------------------------------- /include/delfem/matvec/diamat_blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/diamat_blk.h -------------------------------------------------------------------------------- /include/delfem/matvec/ker_mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/ker_mat.h -------------------------------------------------------------------------------- /include/delfem/matvec/mat_blkcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/mat_blkcrs.h -------------------------------------------------------------------------------- /include/delfem/matvec/matdia_blkcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/matdia_blkcrs.h -------------------------------------------------------------------------------- /include/delfem/matvec/matdiafrac_blkcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/matdiafrac_blkcrs.h -------------------------------------------------------------------------------- /include/delfem/matvec/matdiainv_blkdia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/matdiainv_blkdia.h -------------------------------------------------------------------------------- /include/delfem/matvec/matfrac_blkcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/matfrac_blkcrs.h -------------------------------------------------------------------------------- /include/delfem/matvec/matprecond_blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/matprecond_blk.h -------------------------------------------------------------------------------- /include/delfem/matvec/matprolong_blkcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/matprolong_blkcrs.h -------------------------------------------------------------------------------- /include/delfem/matvec/ordering_blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/ordering_blk.h -------------------------------------------------------------------------------- /include/delfem/matvec/solver_mat_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/solver_mat_iter.h -------------------------------------------------------------------------------- /include/delfem/matvec/solver_mg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/solver_mg.h -------------------------------------------------------------------------------- /include/delfem/matvec/vector_blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/vector_blk.h -------------------------------------------------------------------------------- /include/delfem/matvec/zmat_blkcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/zmat_blkcrs.h -------------------------------------------------------------------------------- /include/delfem/matvec/zmatdia_blkcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/zmatdia_blkcrs.h -------------------------------------------------------------------------------- /include/delfem/matvec/zmatdiafrac_blkcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/zmatdiafrac_blkcrs.h -------------------------------------------------------------------------------- /include/delfem/matvec/zmatprecond_blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/zmatprecond_blk.h -------------------------------------------------------------------------------- /include/delfem/matvec/zsolver_mat_iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/zsolver_mat_iter.h -------------------------------------------------------------------------------- /include/delfem/matvec/zvector_blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/matvec/zvector_blk.h -------------------------------------------------------------------------------- /include/delfem/mesh3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/mesh3d.h -------------------------------------------------------------------------------- /include/delfem/mesh_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/mesh_interface.h -------------------------------------------------------------------------------- /include/delfem/mesh_primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/mesh_primitive.h -------------------------------------------------------------------------------- /include/delfem/mesher2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/mesher2d.h -------------------------------------------------------------------------------- /include/delfem/mesher2d_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/mesher2d_edit.h -------------------------------------------------------------------------------- /include/delfem/msh/meshkernel2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/msh/meshkernel2d.h -------------------------------------------------------------------------------- /include/delfem/msh/meshkernel3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/msh/meshkernel3d.h -------------------------------------------------------------------------------- /include/delfem/msh/surface_mesh_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/msh/surface_mesh_reader.h -------------------------------------------------------------------------------- /include/delfem/node_ary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/node_ary.h -------------------------------------------------------------------------------- /include/delfem/objset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/objset.h -------------------------------------------------------------------------------- /include/delfem/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/quaternion.h -------------------------------------------------------------------------------- /include/delfem/rigid/linearsystem_rigid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/rigid/linearsystem_rigid.h -------------------------------------------------------------------------------- /include/delfem/rigid/linearsystem_rigidfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/rigid/linearsystem_rigidfield.h -------------------------------------------------------------------------------- /include/delfem/rigid/rigidbody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/rigid/rigidbody.h -------------------------------------------------------------------------------- /include/delfem/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/serialize.h -------------------------------------------------------------------------------- /include/delfem/spatial_hash_grid2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/spatial_hash_grid2d.h -------------------------------------------------------------------------------- /include/delfem/spatial_hash_grid3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/spatial_hash_grid3d.h -------------------------------------------------------------------------------- /include/delfem/tri_ary_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/tri_ary_topology.h -------------------------------------------------------------------------------- /include/delfem/uglyfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/uglyfont.h -------------------------------------------------------------------------------- /include/delfem/vector2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/vector2d.h -------------------------------------------------------------------------------- /include/delfem/vector3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/include/delfem/vector3d.h -------------------------------------------------------------------------------- /make_with_mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/make_with_mingw.bat -------------------------------------------------------------------------------- /src/cad/brep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/brep.cpp -------------------------------------------------------------------------------- /src/cad/brep2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/brep2d.cpp -------------------------------------------------------------------------------- /src/cad/cad_edge2d_polyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/cad_edge2d_polyline.cpp -------------------------------------------------------------------------------- /src/cad/cad_elem2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/cad_elem2d.cpp -------------------------------------------------------------------------------- /src/cad/cad_elem3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/cad_elem3d.cpp -------------------------------------------------------------------------------- /src/cad/cad_obj2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/cad_obj2d.cpp -------------------------------------------------------------------------------- /src/cad/cad_obj2d_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/cad_obj2d_move.cpp -------------------------------------------------------------------------------- /src/cad/cad_obj3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/cad_obj3d.cpp -------------------------------------------------------------------------------- /src/cad/contact_target_cad3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/contact_target_cad3d.cpp -------------------------------------------------------------------------------- /src/cad/drawer_cad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/drawer_cad.cpp -------------------------------------------------------------------------------- /src/cad/drawer_cad3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/drawer_cad3d.cpp -------------------------------------------------------------------------------- /src/cad/truss2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/cad/truss2d.cpp -------------------------------------------------------------------------------- /src/com/drawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/com/drawer.cpp -------------------------------------------------------------------------------- /src/com/drawer_gl_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/com/drawer_gl_utility.cpp -------------------------------------------------------------------------------- /src/com/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/com/quaternion.cpp -------------------------------------------------------------------------------- /src/com/spatial_hash_grid2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/com/spatial_hash_grid2d.cpp -------------------------------------------------------------------------------- /src/com/spatial_hash_grid3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/com/spatial_hash_grid3d.cpp -------------------------------------------------------------------------------- /src/com/tri_ary_topology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/com/tri_ary_topology.cpp -------------------------------------------------------------------------------- /src/com/uglyfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/com/uglyfont.cpp -------------------------------------------------------------------------------- /src/com/vector3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/com/vector3d.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_advection_diffusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_advection_diffusion.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_diffusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_diffusion.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_dkt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_dkt.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_helmholtz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_helmholtz.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_hyper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_hyper.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_linear_solid2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_linear_solid2d.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_linear_solid3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_linear_solid3d.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_navier_stokes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_navier_stokes.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_poisson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_poisson.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_st_venant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_st_venant.cpp -------------------------------------------------------------------------------- /src/femeqn/eqn_stokes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqn_stokes.cpp -------------------------------------------------------------------------------- /src/femeqn/eqnsys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqnsys.cpp -------------------------------------------------------------------------------- /src/femeqn/eqnsys_fluid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqnsys_fluid.cpp -------------------------------------------------------------------------------- /src/femeqn/eqnsys_scalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqnsys_scalar.cpp -------------------------------------------------------------------------------- /src/femeqn/eqnsys_shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqnsys_shell.cpp -------------------------------------------------------------------------------- /src/femeqn/eqnsys_solid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/eqnsys_solid.cpp -------------------------------------------------------------------------------- /src/femeqn/ker_emat_tri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femeqn/ker_emat_tri.cpp -------------------------------------------------------------------------------- /src/femfield/drawer_field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/drawer_field.cpp -------------------------------------------------------------------------------- /src/femfield/drawer_field_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/drawer_field_edge.cpp -------------------------------------------------------------------------------- /src/femfield/drawer_field_face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/drawer_field_face.cpp -------------------------------------------------------------------------------- /src/femfield/drawer_field_image_based_flow_vis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/drawer_field_image_based_flow_vis.cpp -------------------------------------------------------------------------------- /src/femfield/drawer_field_streamline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/drawer_field_streamline.cpp -------------------------------------------------------------------------------- /src/femfield/drawer_field_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/drawer_field_vector.cpp -------------------------------------------------------------------------------- /src/femfield/elem_ary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/elem_ary.cpp -------------------------------------------------------------------------------- /src/femfield/eval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/eval.cpp -------------------------------------------------------------------------------- /src/femfield/field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/field.cpp -------------------------------------------------------------------------------- /src/femfield/field_value_setter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/field_value_setter.cpp -------------------------------------------------------------------------------- /src/femfield/field_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/field_world.cpp -------------------------------------------------------------------------------- /src/femfield/node_ary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femfield/node_ary.cpp -------------------------------------------------------------------------------- /src/femls/linearsystem_field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femls/linearsystem_field.cpp -------------------------------------------------------------------------------- /src/femls/linearsystem_fieldsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femls/linearsystem_fieldsave.cpp -------------------------------------------------------------------------------- /src/femls/zlinearsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femls/zlinearsystem.cpp -------------------------------------------------------------------------------- /src/femls/zsolver_ls_iter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/femls/zsolver_ls_iter.cpp -------------------------------------------------------------------------------- /src/ls/eigen_lanczos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/ls/eigen_lanczos.cpp -------------------------------------------------------------------------------- /src/ls/linearsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/ls/linearsystem.cpp -------------------------------------------------------------------------------- /src/ls/preconditioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/ls/preconditioner.cpp -------------------------------------------------------------------------------- /src/ls/solver_ls_iter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/ls/solver_ls_iter.cpp -------------------------------------------------------------------------------- /src/matvec/mat_blkcrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/mat_blkcrs.cpp -------------------------------------------------------------------------------- /src/matvec/matdia_blkcrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/matdia_blkcrs.cpp -------------------------------------------------------------------------------- /src/matvec/matdiafrac_blkcrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/matdiafrac_blkcrs.cpp -------------------------------------------------------------------------------- /src/matvec/matdiainv_blkdia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/matdiainv_blkdia.cpp -------------------------------------------------------------------------------- /src/matvec/matfrac_blkcrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/matfrac_blkcrs.cpp -------------------------------------------------------------------------------- /src/matvec/matprolong_blkcrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/matprolong_blkcrs.cpp -------------------------------------------------------------------------------- /src/matvec/ordering_blk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/ordering_blk.cpp -------------------------------------------------------------------------------- /src/matvec/solver_mat_iter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/solver_mat_iter.cpp -------------------------------------------------------------------------------- /src/matvec/solver_mg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/solver_mg.cpp -------------------------------------------------------------------------------- /src/matvec/vector_blk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/vector_blk.cpp -------------------------------------------------------------------------------- /src/matvec/zmat_blkcrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/zmat_blkcrs.cpp -------------------------------------------------------------------------------- /src/matvec/zmatdia_blkcrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/zmatdia_blkcrs.cpp -------------------------------------------------------------------------------- /src/matvec/zmatdiafrac_blkcrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/zmatdiafrac_blkcrs.cpp -------------------------------------------------------------------------------- /src/matvec/zsolver_mat_iter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/zsolver_mat_iter.cpp -------------------------------------------------------------------------------- /src/matvec/zvector_blk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/matvec/zvector_blk.cpp -------------------------------------------------------------------------------- /src/msh/drawer_msh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/msh/drawer_msh.cpp -------------------------------------------------------------------------------- /src/msh/mesh3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/msh/mesh3d.cpp -------------------------------------------------------------------------------- /src/msh/mesh3d_extrude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/msh/mesh3d_extrude.cpp -------------------------------------------------------------------------------- /src/msh/mesher2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/msh/mesher2d.cpp -------------------------------------------------------------------------------- /src/msh/mesher2d_edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/msh/mesher2d_edit.cpp -------------------------------------------------------------------------------- /src/msh/mesher3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/msh/mesher3d.cpp -------------------------------------------------------------------------------- /src/msh/meshkernel2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/msh/meshkernel2d.cpp -------------------------------------------------------------------------------- /src/msh/meshkernel3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/msh/meshkernel3d.cpp -------------------------------------------------------------------------------- /src/msh/surface_mesh_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/msh/surface_mesh_reader.cpp -------------------------------------------------------------------------------- /src/rigid/linearsystem_rigid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/rigid/linearsystem_rigid.cpp -------------------------------------------------------------------------------- /src/rigid/linearsystem_rigidfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/rigid/linearsystem_rigidfield.cpp -------------------------------------------------------------------------------- /src/rigid/rigidbody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/src/rigid/rigidbody.cpp -------------------------------------------------------------------------------- /test_glut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/Makefile -------------------------------------------------------------------------------- /test_glut/cad2d_edit/cad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/cad2d_edit/cad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/cad2d_edit/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/cad2d_edit/main.cpp -------------------------------------------------------------------------------- /test_glut/cad3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/cad3d/Makefile -------------------------------------------------------------------------------- /test_glut/cad3d/cad_view.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/cad3d/cad_view.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/cad3d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/cad3d/main.cpp -------------------------------------------------------------------------------- /test_glut/cad_view/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/cad_view/Makefile -------------------------------------------------------------------------------- /test_glut/cad_view/cad_view.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/cad_view/cad_view.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/cad_view/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/cad_view/main.cpp -------------------------------------------------------------------------------- /test_glut/dkt2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/dkt2d/Makefile -------------------------------------------------------------------------------- /test_glut/dkt2d/dkt2d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/dkt2d/dkt2d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/dkt2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/dkt2d/main.cpp -------------------------------------------------------------------------------- /test_glut/field_evaluate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/field_evaluate/Makefile -------------------------------------------------------------------------------- /test_glut/field_evaluate/field_evaluate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/field_evaluate/field_evaluate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/field_evaluate/grad_hex.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/field_evaluate/grad_hex.inp -------------------------------------------------------------------------------- /test_glut/field_evaluate/grad_tet.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/field_evaluate/grad_tet.inp -------------------------------------------------------------------------------- /test_glut/field_evaluate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/field_evaluate/main.cpp -------------------------------------------------------------------------------- /test_glut/fluid2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/fluid2d/Makefile -------------------------------------------------------------------------------- /test_glut/fluid2d/fluid2d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/fluid2d/fluid2d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/fluid2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/fluid2d/main.cpp -------------------------------------------------------------------------------- /test_glut/helmholtz2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/helmholtz2d/Makefile -------------------------------------------------------------------------------- /test_glut/helmholtz2d/helmholtz2d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/helmholtz2d/helmholtz2d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/helmholtz2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/helmholtz2d/main.cpp -------------------------------------------------------------------------------- /test_glut/hyper3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/hyper3d/Makefile -------------------------------------------------------------------------------- /test_glut/hyper3d/hyper3d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/hyper3d/hyper3d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/hyper3d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/hyper3d/main.cpp -------------------------------------------------------------------------------- /test_glut/input_file/FE_5k.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/FE_5k.ply -------------------------------------------------------------------------------- /test_glut/input_file/bimba_cvd_5k.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/bimba_cvd_5k.off -------------------------------------------------------------------------------- /test_glut/input_file/cylinder_hex.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/cylinder_hex.msh -------------------------------------------------------------------------------- /test_glut/input_file/cylinder_tet.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/cylinder_tet.msh -------------------------------------------------------------------------------- /test_glut/input_file/cylinder_tet2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/cylinder_tet2.msh -------------------------------------------------------------------------------- /test_glut/input_file/hexa_tri.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/hexa_tri.msh -------------------------------------------------------------------------------- /test_glut/input_file/pig.gmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/pig.gmv -------------------------------------------------------------------------------- /test_glut/input_file/rect_quad.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/rect_quad.msh -------------------------------------------------------------------------------- /test_glut/input_file/rect_tri.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/rect_tri.msh -------------------------------------------------------------------------------- /test_glut/input_file/rect_tri2.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/rect_tri2.msh -------------------------------------------------------------------------------- /test_glut/input_file/rect_tri3.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/rect_tri3.msh -------------------------------------------------------------------------------- /test_glut/input_file/redtsolid_tet.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/input_file/redtsolid_tet.msh -------------------------------------------------------------------------------- /test_glut/make_all_tests_with_mingw.bat: -------------------------------------------------------------------------------- 1 | mingw32-make -------------------------------------------------------------------------------- /test_glut/msh_view/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/msh_view/Makefile -------------------------------------------------------------------------------- /test_glut/msh_view/hoge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/msh_view/hoge.txt -------------------------------------------------------------------------------- /test_glut/msh_view/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/msh_view/main.cpp -------------------------------------------------------------------------------- /test_glut/msh_view/msh_view.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/msh_view/msh_view.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/rigid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/rigid/Makefile -------------------------------------------------------------------------------- /test_glut/rigid/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/rigid/main.cpp -------------------------------------------------------------------------------- /test_glut/rigid/rigid.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/rigid/rigid.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/scalar2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/scalar2d/Makefile -------------------------------------------------------------------------------- /test_glut/scalar2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/scalar2d/main.cpp -------------------------------------------------------------------------------- /test_glut/scalar2d/scalar2d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/scalar2d/scalar2d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/scalar3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/scalar3d/Makefile -------------------------------------------------------------------------------- /test_glut/scalar3d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/scalar3d/main.cpp -------------------------------------------------------------------------------- /test_glut/scalar3d/scalar3d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/scalar3d/scalar3d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/solid2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/solid2d/Makefile -------------------------------------------------------------------------------- /test_glut/solid2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/solid2d/main.cpp -------------------------------------------------------------------------------- /test_glut/solid2d/solid2d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/solid2d/solid2d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/solid2d_thermal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/solid2d_thermal/Makefile -------------------------------------------------------------------------------- /test_glut/solid2d_thermal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/solid2d_thermal/main.cpp -------------------------------------------------------------------------------- /test_glut/solid2d_thermal/solid2d_thermal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/solid2d_thermal/solid2d_thermal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/solid3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/solid3d/Makefile -------------------------------------------------------------------------------- /test_glut/solid3d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/solid3d/main.cpp -------------------------------------------------------------------------------- /test_glut/solid3d/solid3d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/solid3d/solid3d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/stvk_rigid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/stvk_rigid/Makefile -------------------------------------------------------------------------------- /test_glut/stvk_rigid/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/stvk_rigid/main.cpp -------------------------------------------------------------------------------- /test_glut/stvk_rigid/stvk_rigid.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/stvk_rigid/stvk_rigid.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut/tests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut/tests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_glut_lowlev/solid2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut_lowlev/solid2d/main.cpp -------------------------------------------------------------------------------- /test_glut_lowlev/solid2d/solid.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_glut_lowlev/solid2d/solid.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test_qt/fluid2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/Makefile -------------------------------------------------------------------------------- /test_qt/fluid2d/dialog_fluid2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/dialog_fluid2d.cpp -------------------------------------------------------------------------------- /test_qt/fluid2d/dialog_fluid2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/dialog_fluid2d.h -------------------------------------------------------------------------------- /test_qt/fluid2d/dialog_fluid2d.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/dialog_fluid2d.ui -------------------------------------------------------------------------------- /test_qt/fluid2d/fluid2d.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/fluid2d.app/Contents/Info.plist -------------------------------------------------------------------------------- /test_qt/fluid2d/fluid2d.app/Contents/MacOS/fluid2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/fluid2d.app/Contents/MacOS/fluid2d -------------------------------------------------------------------------------- /test_qt/fluid2d/fluid2d.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /test_qt/fluid2d/fluid2d.app/Contents/Resources/empty.lproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_qt/fluid2d/fluid2d.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/fluid2d.pro -------------------------------------------------------------------------------- /test_qt/fluid2d/fluid2d.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/fluid2d.pro.user -------------------------------------------------------------------------------- /test_qt/fluid2d/glwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/glwidget.cpp -------------------------------------------------------------------------------- /test_qt/fluid2d/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/glwidget.h -------------------------------------------------------------------------------- /test_qt/fluid2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/main.cpp -------------------------------------------------------------------------------- /test_qt/fluid2d/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/mainwindow.cpp -------------------------------------------------------------------------------- /test_qt/fluid2d/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/mainwindow.h -------------------------------------------------------------------------------- /test_qt/fluid2d/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/mainwindow.ui -------------------------------------------------------------------------------- /test_qt/fluid2d/ui_dialog_fluid2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/ui_dialog_fluid2d.h -------------------------------------------------------------------------------- /test_qt/fluid2d/ui_dialog_solid2d_viewsetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/ui_dialog_solid2d_viewsetting.h -------------------------------------------------------------------------------- /test_qt/fluid2d/ui_mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/fluid2d/ui_mainwindow.h -------------------------------------------------------------------------------- /test_qt/scalar2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/Makefile -------------------------------------------------------------------------------- /test_qt/scalar2d/dialog_scalar2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/dialog_scalar2d.cpp -------------------------------------------------------------------------------- /test_qt/scalar2d/dialog_scalar2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/dialog_scalar2d.h -------------------------------------------------------------------------------- /test_qt/scalar2d/dialog_scalar2d.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/dialog_scalar2d.ui -------------------------------------------------------------------------------- /test_qt/scalar2d/glwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/glwidget.cpp -------------------------------------------------------------------------------- /test_qt/scalar2d/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/glwidget.h -------------------------------------------------------------------------------- /test_qt/scalar2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/main.cpp -------------------------------------------------------------------------------- /test_qt/scalar2d/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/mainwindow.cpp -------------------------------------------------------------------------------- /test_qt/scalar2d/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/mainwindow.h -------------------------------------------------------------------------------- /test_qt/scalar2d/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/mainwindow.ui -------------------------------------------------------------------------------- /test_qt/scalar2d/scalar2d.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/scalar2d.app/Contents/Info.plist -------------------------------------------------------------------------------- /test_qt/scalar2d/scalar2d.app/Contents/MacOS/scalar2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/scalar2d.app/Contents/MacOS/scalar2d -------------------------------------------------------------------------------- /test_qt/scalar2d/scalar2d.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /test_qt/scalar2d/scalar2d.app/Contents/Resources/empty.lproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_qt/scalar2d/scalar2d.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/scalar2d.pro -------------------------------------------------------------------------------- /test_qt/scalar2d/scalar2d.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/scalar2d.pro.user -------------------------------------------------------------------------------- /test_qt/scalar2d/ui_dialog_scalar2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/ui_dialog_scalar2d.h -------------------------------------------------------------------------------- /test_qt/scalar2d/ui_mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/scalar2d/ui_mainwindow.h -------------------------------------------------------------------------------- /test_qt/solid2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/Makefile -------------------------------------------------------------------------------- /test_qt/solid2d/dialog_solid2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/dialog_solid2d.cpp -------------------------------------------------------------------------------- /test_qt/solid2d/dialog_solid2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/dialog_solid2d.h -------------------------------------------------------------------------------- /test_qt/solid2d/dialog_solid2d.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/dialog_solid2d.ui -------------------------------------------------------------------------------- /test_qt/solid2d/dialog_solid2d_viewsetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/dialog_solid2d_viewsetting.cpp -------------------------------------------------------------------------------- /test_qt/solid2d/dialog_solid2d_viewsetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/dialog_solid2d_viewsetting.h -------------------------------------------------------------------------------- /test_qt/solid2d/dialog_solid2d_viewsetting.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/dialog_solid2d_viewsetting.ui -------------------------------------------------------------------------------- /test_qt/solid2d/glwidget_solid2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/glwidget_solid2d.cpp -------------------------------------------------------------------------------- /test_qt/solid2d/glwidget_solid2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/glwidget_solid2d.h -------------------------------------------------------------------------------- /test_qt/solid2d/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/main.cpp -------------------------------------------------------------------------------- /test_qt/solid2d/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/mainwindow.cpp -------------------------------------------------------------------------------- /test_qt/solid2d/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/mainwindow.h -------------------------------------------------------------------------------- /test_qt/solid2d/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/mainwindow.ui -------------------------------------------------------------------------------- /test_qt/solid2d/solid2d.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/solid2d.app/Contents/Info.plist -------------------------------------------------------------------------------- /test_qt/solid2d/solid2d.app/Contents/MacOS/solid2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/solid2d.app/Contents/MacOS/solid2d -------------------------------------------------------------------------------- /test_qt/solid2d/solid2d.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /test_qt/solid2d/solid2d.app/Contents/Resources/empty.lproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_qt/solid2d/solid2d.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/solid2d.pro -------------------------------------------------------------------------------- /test_qt/solid2d/solid2d.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/solid2d.pro.user -------------------------------------------------------------------------------- /test_qt/solid2d/ui_dialog_solid2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/ui_dialog_solid2d.h -------------------------------------------------------------------------------- /test_qt/solid2d/ui_dialog_solid2d_viewsetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/ui_dialog_solid2d_viewsetting.h -------------------------------------------------------------------------------- /test_qt/solid2d/ui_mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobuyuki83/DelFEM/HEAD/test_qt/solid2d/ui_mainwindow.h --------------------------------------------------------------------------------