URI:
       tgrid.h - slidergrid - grid of elastic sliders on a frictional surface
  HTML git clone git://src.adamsgaard.dk/slidergrid
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       tgrid.h (348B)
       ---
            1 #ifndef GRID_H_
            2 #define GRID_H_
            3 #include "slider.h"
            4 
            5 slider* create_regular_slider_grid(
            6         const int nx,
            7         const int ny,
            8         const int nz,
            9         const Float dx,
           10         const Float dy,
           11         const Float dz);
           12 
           13 void find_and_bond_to_neighbors_n2(
           14         slider* sliders,
           15         const int N,
           16         const Float cutoff);
           17 
           18 #endif