Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] What are the member of Polylines

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] What are the member of Polylines


Chronological Thread 
  • From: "Laurent Rineau (CGAL/GeometryFactory)" <>
  • To:
  • Subject: Re: [cgal-discuss] What are the member of Polylines
  • Date: Mon, 05 Mar 2018 11:10:24 +0100
  • Authentication-results: mail2-smtp-roc.national.inria.fr; spf=None ; spf=Pass ; spf=None
  • Ironport-phdr: 9a23:kKxsCRbocHvDwXfF85SIVez/LSx+4OfEezUN459isYplN5qZrsyzbnLW6fgltlLVR4KTs6sC17KN9fi4EUU7or+5+EgYd5JNUxJXwe43pCcHRPC/NEvgMfTxZDY7FskRHHVs/nW8LFQHUJ2mPw6arXK99yMdFQviPgRpOOv1BpTSj8Oq3Oyu5pHfeQpFiCazbL9oMBm6sRjau9ULj4dlNqs/0AbCrGFSe+RRy2NoJFaTkAj568yt4pNt8Dletuw4+cJYXqr0Y6o3TbpDDDQ7KG81/9HktQPCTQSU+HQRVHgdnwdSDAjE6BH6WYrxsjf/u+Fg1iSWIdH6QLYpUjmk8qxlSgLniD0fOjA57m/Zl8J+gqFcoB2jqRxwzIHab52OOfpiZ6PQZ88WSXZdUspMUSFKH4Oyb5EID+oEJetUoY/zqEETrRukGwasAv/vwSJUiH/32601zf4uERzb1wAkAd8AsWjZotPuOKkTT++1y6zIwivfb/NM2Tbz6JLHfQw9ofGLR7Jxcc/dxUcyHA7CilWfs5HlPymL2eQLr2iX9fBgVeOpi2E5sQ5xvyOiydsjiobTgoIZ0FfE9T92wIssI9CzVUB1YdmhEJRKtiGaMZN7Td8tQ25yvCY20LoGuYS0fCQSx5Qo2Rnfa/mZfIiU+BLiVOiRLi1ki3J5f7K/nRaz/VK8xe37U8m51ktBoCldktTUq3wA1R/e5tKJR/dj5Eus3TWC2xrN5uxKPEw4jbfXJpovz7Iqi5YfrUvOEjX4lUnrlqOaa1ko9vWu5u/6eLvpvIWcOJVxigzmMqQhhMi/AeMgPwQTW2WX4+G81Lrt8EHjRbVFlPw2kq3AvJDdOMQburS1AwhL0oYj8Rq/CSmp0MgAkXkGKlJKZg6HgpD0N1zMI/30F/myj0q2nDpvxP3KJKPtD5vQInTblbfuZ7d960pSyAopytBf4opZCrUbL/LuQE/+qtrYDgMjPwyuwubnDsty2ZkDWW+UHqCZP7ndsVuS6uIoOemMa5cZuCzhJPg9+/7ukXg5lEcBcqmmx5QXbGm0EelnI0WCfXXsn8wBEXwRswolTO3qjUWCXiRJa3azWaI8/DA7B5i8AYfNXID+yICGiSy0F5kTamFdAU2XCl/pcZ+FUrECcnG8OMhkx3YgXKW7Rok9nSuvsgLz1vInBcX93mo3uJXm2cRv9sPang017y01RYzJ12iQVWxygiUSRjk71b1XqkN0zhGEy6cu0K8QLsBa+/4cClRyDpXb1eEvU4mjCDKERc+ATROdevvjBDgwStwrxNpXOxR2FNymyBfZ0HjzWuNHp/mwHJUxt5nk8T3pPc8kkyTN26AlyV48TZkXbDD0tutE7wHWQrXxvQCZmqKtL/lOhX+L8WDYi2+HvUUdVxNsF6LbXTYZa1eE9dk=
  • Organization: GeometryFactory

Le Sunday, March 4, 2018 12:51:52 PM CET R Abilash a écrit :
> I got the following code from
> https://doc.cgal.org/latest/Polygon_mesh_processing/Polygon_mesh_processing
> _2mesh_slicer_example_8cpp-example.html
>
> I want to know the members of the Polylines data structure.
> Can some one guide me?

You can see the types here in the code:

typedef std::vector<K::Point_3> Polyline_type;
typedef std::list< Polyline_type > Polylines;

The API is the standard API of a `std::list` with its `value_type` being a
`std::vector<K::Point_3>`. As for the API of `K::Point_3`, for all CGAL
kernels the nested `Point_3` is the one documented here:

https://doc.cgal.org/latest/Kernel_23/classCGAL_1_1Point__3.html

--
Laurent Rineau, PhD
R&D Engineer at GeometryFactory http://www.geometryfactory.com/
Release Manager of the CGAL Project http://www.cgal.org/






Archive powered by MHonArc 2.6.18.

Top of Page