forked from isl-org/Open3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpen3D.code-workspace
85 lines (85 loc) · 2.19 KB
/
Open3D.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
// Files in root
"CHANGELOG.md": true,
"3rdparty": true,
"LICENSE": true,
"README.md": true,
".codacy.yml": true,
".clang-format": true,
".dockerignore": true,
".gitattributes": true,
".style.yapf": true,
// Folders in root
"docker": true,
"docs": true,
"examples": true,
"python": true,
"util": true,
".git": true,
".github": true,
// Folders in cpp
"cpp/apps": true,
"cpp/benchmarks": true,
"cpp/pybind": true,
"cpp/tests": true,
"cpp/tools": true,
// Folders in cpp/open3d
"cpp/open3d/data": true,
"cpp/open3d/ml": true,
"cpp/open3d/t": true,
"cpp/open3d/visualization": true
},
"files.associations": {
"iosfwd": "cpp",
"array": "cpp",
"bit": "cpp",
"*.tcc": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"vector": "cpp",
"exception": "cpp",
"string_view": "cpp",
"fstream": "cpp",
"functional": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"istream": "cpp",
"limits": "cpp",
"memory": "cpp",
"new": "cpp",
"optional": "cpp",
"ostream": "cpp",
"ratio": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"string": "cpp",
"system_error": "cpp",
"type_traits": "cpp",
"tuple": "cpp",
"typeinfo": "cpp",
"utility": "cpp"
}
}
}