-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
74 lines (64 loc) · 2.53 KB
/
NAMESPACE
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
export(Gltf, extractTexture, readglTF, readGLB, as.gltf, as.mesh3d, as.rglscene,
showNodes, showTags,
showtree, playgltf, plot3d, writeglTF, writeGLB, findEntry,
namePattern, hasClass,
matrixSequence, gltfWidget, modifyShaders, getTangents,
setPBRshaders)
useDynLib(rgl2gltf, .registration = TRUE, .fixes = "C_")
importFrom("jsonlite", "read_json")
importFrom("rgl", "%>%", "as.rglscene", "addToSubscene3d",
"asEuclidean", "asEuclidean2", "asHomogeneous", "asHomogeneous2",
"as.tmesh3d", "clear3d", "close3d",
"cube3d", "currentSubscene3d",
"delFromSubscene3d", "getr3dDefaults",
"as.mesh3d", "getShaders", "ids3d", "lowlevel",
"makeDependency", "material3d", "mesh3d",
"newSubscene3d", "open3d",
"par3d", "par3dinterp", "par3dinterpControl",
"playwidget",
"plot3d", "pop3d", "rgl.material", "rgl.primitive",
"rglwidget",
"rotationMatrix", "scale3d", "scaleMatrix",
"scene3d", "setUserShaders",
"text3d", "tagged3d",
"translate3d", "translationMatrix",
"rotate3d", "shapelist3d", "useSubscene3d", "Buffer")
importFrom("grDevices", "col2rgb", "rgb", "xy.coords", "xyz.coords")
importFrom("utils", "capture.output", "head", "packageVersion")
importFrom("tools", "file_ext")
importFrom("R6", "R6Class")
importFrom("base64enc", "dataURI")
importFrom("stats", "approxfun", "complete.cases")
S3method("plot3d", "gltf")
S3method("as.mesh3d", "gltf")
S3method("as.gltf", "default")
S3method("as.gltf", "mesh3d")
S3method("as.gltf", "shapelist3d")
S3method("as.gltf", "rglobject")
S3method("as.gltf", "rglscene")
S3method("as.gltf", "rglbackground")
S3method("as.gltf", "rglbboxdeco")
S3method("as.gltf", "rglspheres")
S3method("as.gltf", "rglsprites")
S3method("as.gltf", "rglsubscene")
S3method("as.gltf", "rgltext")
S3method("as.rglscene", "gltf")
S3method("merge", "rglobject")
S3method("showtree", "gltf")
S3method("showtree", "rglscene")
S3method("print", "gltfNode")
S3method("print", "gltfMesh")
S3method("print", "gltfSkin")
S3method("print", "gltfScene")
S3method("print", "gltfImage")
S3method("print", "gltfCamera")
S3method("print", "gltfBuffer")
S3method("print", "gltfTexture")
S3method("print", "gltfChannel")
S3method("print", "gltfAccessor")
S3method("print", "gltfMaterial")
S3method("print", "gltfPrimitive")
S3method("print", "gltfAnimation")
S3method("print", "gltfBufferview")
S3method("print", "gltfAnimationSampler")
S3method("print", "matrixSequence")