File: properties.h

package info (click to toggle)
cgal 6.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 144,952 kB
  • sloc: cpp: 811,597; ansic: 208,576; sh: 493; python: 411; makefile: 286; javascript: 174
file content (12 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CGAL_LAB_DEMO_PROPERTIES_H
#define CGAL_LAB_DEMO_PROPERTIES_H

namespace CGAL {

enum vertex_selection_t         { vertex_selection};
enum edge_selection_t           { edge_selection};
enum face_selection_t           { face_selection};

} // namespace CGAL

#endif