Skip to content
Snippets Groups Projects
Select Git revision
  • 38c8e4fa2834c1bbb5faf4c845752329ec2a14b7
  • master default protected
  • overlaps_tags_and_distributed_export
  • overlaps_tags_and_distributed_export_rebased
  • relaying
  • alphashapes
  • patches-4.14
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • hierarchical-basis
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • reducing_files
  • fix_overlaps
  • gmsh_4_14_0
  • gmsh_4_13_1
  • gmsh_4_13_0
  • gmsh_4_12_2
  • gmsh_4_12_1
  • gmsh_4_12_0
  • gmsh_4_11_1
  • gmsh_4_11_0
  • gmsh_4_10_5
  • gmsh_4_10_4
  • gmsh_4_10_3
  • gmsh_4_10_2
  • gmsh_4_10_1
  • gmsh_4_10_0
  • gmsh_4_9_5
  • gmsh_4_9_4
  • gmsh_4_9_3
  • gmsh_4_9_2
  • gmsh_4_9_1
  • gmsh_4_9_0
41 results

Probe.cpp

Blame
  • Pos_Search.h 917 B
    // GetDP - Copyright (C) 1997-2018 P. Dular and C. Geuzaine, University of Liege
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to the public mailing list <getdp@onelab.info>.
    
    #ifndef _POS_SEARCH_H_
    #define _POS_SEARCH_H_
    
    #include "ProData.h"
    #include "GeoData.h"
    #include "ListUtils.h"
    
    struct Brick {
      List_T *p[3];
    } ;
    
    struct ElementBox {
      double  Xmin, Xmax ;
      double  Ymin, Ymax ;
      double  Zmin, Zmax ;
    } ;
    
    struct PointElement {
      double d;
      double xp, yp, zp;
      int ElementIndex;
    } ;
    
    void Free_SearchGrid(struct Grid * Grid);
    
    void InWhichElement(struct Grid *Grid,
    		    List_T *ExcludeRegion,
    		    struct Element * Element,
    		    int Flag,
    		    double  x, double  y, double  z,
    		    double *u, double *v, double *w);
    
    void xyz2uvwInAnElement(struct Element *Element,
    			double  x, double  y, double  z,
    			double *u, double *v, double *w);
    
    #endif