CGAL库——学习一

#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Triangulation_3.h>
#include <iostream>
#include <fstream>
#include <cassert>
#include <list>
#include <vector>

using namespace std;
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Triangulation_3<K>      Triangulation;
typedef Triangulation::Cell_handle    Cell_handle;
typedef Triangulation::Vertex_handle  Vertex_handle;
typedef Triangulation::Locate_type    Locate_type;
typedef Triangulation::Point          Point;
int main()
{
  // construction from a list of points :
  std::list<Point> L; //
  L.push_front(Point(0,0,0)); //增加一point到链表头。
  //这个时候list L 应该是      (0,1,0) (1,0,0) (0,0,0)
  L.push_front(Point(1,0,0));
  L.push_front(Point(0,1,0));
  //这个函数直接就构成TIN了嘛?原理是什么 直接声明就构成TIN了?还有合理不合理啊? 确实是直接构成TIN了! 而且合法 也就是直接定义而且赋值了!
  Triangulation T(L.begin(), L.end());  
  T.is_valid();
  std::cout<<T.is_valid()<<endl;
  Triangulation::size_type n = T.number_of_vertices();
  // insertion from a vector :
  std::vector<Point> V(3);
  V[0] = Point(0,0,1);
  V[1] = Point(1,1,1);
  V[2] = Point(2,2,2);
  n = n + T.insert(V.begin(), V.end()); //这个函数既insert了这几个点,而且return了几个点。
  assert( n == 6 );       // 6 points have been inserted
  assert( T.is_valid() ); // checking validity of T
  Locate_type lt;
  int li, lj;
  Point p(0,0,0);
  Cell_handle c = T.locate(p, lt, li, lj); //
  // p is the vertex of c of index li :
  //If the k-face is a cell, li and lj have no meaning; if it is a facet (resp. vertex), 
  //li gives the index of the facet (resp. vertex) and lj has no meaning; if it is and edge, li and lj give the indices of its vertices.
  assert( lt == Triangulation::VERTEX );
  assert( c->vertex(li)->point() == p );
  Vertex_handle v = c->vertex( (li+1)&3 );
  // v is another vertex of c
  Cell_handle nc = c->neighbor(li);
  // nc = neighbor of c opposite to the vertex associated with p
  // nc must have vertex v :
  int nli;
  assert( nc->has_vertex( v, nli ) );
  // nli is the index of v in nc
  std::ofstream oFileT("output",std::ios::out);
  // writing file output;
  oFileT << T;
  Triangulation T1;
  std::ifstream iFileT("output",std::ios::in);
  // reading file output;
  iFileT >> T1;
  assert( T1.is_valid() );
  assert( T1.number_of_vertices() == T.number_of_vertices() );
  assert( T1.number_of_cells() == T.number_of_cells() );
  getchar();
  return 0;
}

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值