~ubuntu-branches/ubuntu/saucy/rheolef/saucy

« back to all changes in this revision

Viewing changes to nfem/basis/basic_point.cc

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Saramito
  • Date: 2011-03-23 11:14:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110323111426-cjvhey7lxt6077ty
Tags: 5.93-1
* New upstream release (minor changes):
  - some extra warning message deleted in heap_allocator
  - graphic output with mayavi2 fixed
  - add doc refman in .info and .pdf format

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
{
23
23
  init_orient();
24
24
  trace_macro ("orient2d");
25
 
  return orient2d ((double*)a.x_, (double*)b.x_, (double*)c.x_);
 
25
  return orient2d ((double*)a._x, (double*)b._x, (double*)c._x);
26
26
}
27
27
template<>
28
28
double
31
31
{
32
32
  init_orient();
33
33
  trace_macro ("orient3d");
34
 
  return orient3d ((double*)a.x_, (double*)b.x_, (double*)c.x_, (double*)d.x_);
 
34
  return orient3d ((double*)a._x, (double*)b._x, (double*)c._x, (double*)d._x);
35
35
}
36
36
} // namespace rheolef