Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] adding additional variables in 3D triangulation data structure

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] adding additional variables in 3D triangulation data structure


Chronological Thread 
  • From: Tianyun Su <>
  • To:
  • Subject: Re: [cgal-discuss] adding additional variables in 3D triangulation data structure
  • Date: Mon, 18 Jul 2016 10:12:57 +0800
  • Authentication-results: mail2-smtp-roc.national.inria.fr; spf=None ; spf=Pass ; spf=None
  • Ironport-phdr: 9a23:DEq9xR0Zgy5sKh6usmDT+DRfVm0co7zxezQtwd8ZsekVIvad9pjvdHbS+e9qxAeQG96Ks7QY26GK4+jJYi8p2d65qncMcZhBBVcuqP49uEgeOvODElDxN/XwbiY3T4xoXV5h+GynYwAOQJ6tL2PbrnD61zMOABK3bVMzfbWtXNKCxJjnn8mJuLTrKz1SgzS8Zb4gZD6Xli728vcsvI15N6wqwQHIqHYbM85fxGdvOE7B102kvpT4r9Ze9T9Nsach69JYSve9OL8pSKRRSjUgKWE8osPx8gLSSBOGoXoaXGJRmRVBB03J7QrxQ4zq4Rb8rfd3jSmGIdXtH/dzQiWn964tSRnyiS5BOSR+63DSksU3jaRVp1WqqBV7hoLVe4qIL+EtQqSIdtwTQS9NX91aSjdaKoK6dYoGSeQbbshCqIyom1oHqwqjA0GXGau71j5BgG7r2+shzswuFAjH2EorGNdY4yecl8n8KKpHCbP996LP1ziWN/4=

Hello, Adam,
Thank you for your suggestion. I just made a test according to the
example and it can solve my problem.

Tianyun

On Sun, Jul 17, 2016 at 5:51 AM, Andreas Fabri
<>
wrote:
>
> Please have a look at the example in the manual:
>
> http://doc.cgal.org/latest/Triangulation_3/index.html#Triangulation3secexamplescolor
>
>
>
>
> On 16/07/2016 17:37, Tianyun Su wrote:
>>
>> Hi Adam,
>> Thank you for your response and instruction. I have not use
>> Triangulation_vertex_base_with_info_3 or
>> Triangulation_cell_base_with_info_3 before. Can you give me a more
>> instruction about assigning and accessing the value of the added
>> unsigned integer variable?
>> Thanks again.
>>
>> Tianyun
>>
>>
>> On Sat, Jul 16, 2016 at 7:31 AM, Adam Getchell
>> <>
>> wrote:
>>>
>>> Sorry, the rest of the header might be useful:
>>>
>>>>
>>>> // CGAL headers
>>>> #include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
>>>> #include <CGAL/Triangulation_vertex_base_with_info_3.h>
>>>> #include <CGAL/Triangulation_cell_base_with_info_3.h>
>>>> #include <CGAL/Delaunay_triangulation_3.h>
>>>>
>>>> using K = CGAL::Exact_predicates_inexact_constructions_kernel;
>>>> using Triangulation = CGAL::Triangulation_3<K>;
>>>> // Used so that each timeslice is assigned an integer
>>>> using Vb = CGAL::Triangulation_vertex_base_with_info_3<std::uintmax_t,
>>>> K>;
>>>> // Used to mark cell type
>>>> using Cb = CGAL::Triangulation_cell_base_with_info_3<std::uintmax_t, K>;
>>>
>>>
>>> // Parallel operations
>>> #ifdef CGAL_LINKED_WITH_TBB
>>> using Tds = CGAL::Triangulation_data_structure_3<Vb, Cb,
>>> CGAL::Parallel_tag>;
>>> #else
>>> using Tds = CGAL::Triangulation_data_structure_3<Vb, Cb>;
>>> #endif
>>> using Delaunay = CGAL::Delaunay_triangulation_3<K, Tds>;
>>> using Cell_handle = Delaunay::Cell_handle;
>>> using Vertex_handle = Delaunay::Vertex_handle;
>>> using Locate_type = Delaunay::Locate_type;
>>> using Point = Delaunay::Point;
>>>
>>> Adam
>>> --
>>> Adam Getchell
>>> about.me/adamgetchell
>>>
>>>
>>> --
>>> You are currently subscribed to cgal-discuss.
>>> To unsubscribe or access the archives, go to
>>> https://sympa.inria.fr/sympa/info/cgal-discuss
>>>
>>>
>>
>
> --
> You are currently subscribed to cgal-discuss.
> To unsubscribe or access the archives, go to
> https://sympa.inria.fr/sympa/info/cgal-discuss
>
>



Archive powered by MHonArc 2.6.18.

Top of Page