From 42700c902a6edb2290c539f404f6b07b9a3444e0 Mon Sep 17 00:00:00 2001 From: Neha Agarwal Date: Thu, 25 Jun 2015 14:20:29 +0530 Subject: [PATCH] docs update --- docs/api/objects/Bone.html | 9 +++++++++ docs/api/objects/LOD.html | 8 ++++++++ docs/api/objects/LensFlare.html | 8 ++++++++ docs/api/objects/Line.html | 8 ++++++++ docs/api/objects/LineSegments.html | 9 +++++++++ docs/api/objects/Mesh.html | 8 ++++++++ docs/api/objects/MorphAnimMesh.html | 8 ++++++++ docs/api/objects/PointCloud.html | 7 +++++++ docs/api/objects/Skeleton.html | 4 ++++ docs/api/objects/SkinnedMesh.html | 8 ++++++++ docs/api/objects/Sprite.html | 9 ++++++++- 11 files changed, 85 insertions(+), 1 deletion(-) diff --git a/docs/api/objects/Bone.html b/docs/api/objects/Bone.html index 5a0c5ed5ae..1894dc7434 100644 --- a/docs/api/objects/Bone.html +++ b/docs/api/objects/Bone.html @@ -41,6 +41,15 @@ An optional reference to the [page:SkinnedMesh]. +

Methods

+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned Bone Object. +
+
+ Clone a Bone Object. +

Source

diff --git a/docs/api/objects/LOD.html b/docs/api/objects/LOD.html index ee97d3286a..de148dc9a5 100644 --- a/docs/api/objects/LOD.html +++ b/docs/api/objects/LOD.html @@ -75,6 +75,14 @@
Update the visiblility of the level of detail based on the distance from the camera.
+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned LOD Object. +
+
+ Clone a LOD Object. +

Source

diff --git a/docs/api/objects/LensFlare.html b/docs/api/objects/LensFlare.html index cacdcca705..6af7c06bb2 100644 --- a/docs/api/objects/LensFlare.html +++ b/docs/api/objects/LensFlare.html @@ -65,6 +65,14 @@ Updates the lens flare based on the [page:LensFlare.positionScreen positionScreen] property. +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned LensFlare Object. +
+
+ Clone a LensFlare Object. +
+

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] diff --git a/docs/api/objects/Line.html b/docs/api/objects/Line.html index 1791110801..4b3f3d15dc 100644 --- a/docs/api/objects/Line.html +++ b/docs/api/objects/Line.html @@ -63,6 +63,14 @@
Get intersections between a casted ray and this Line. [page:Raycaster.intersectObject] will call this method.
+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned Line Object. +
+
+ Clone a Line Object. +

Source

diff --git a/docs/api/objects/LineSegments.html b/docs/api/objects/LineSegments.html index ded538cff9..8c0ec01703 100644 --- a/docs/api/objects/LineSegments.html +++ b/docs/api/objects/LineSegments.html @@ -45,6 +45,15 @@
Get intersections between a casted ray and this Line. [page:Raycaster.intersectObject] will call this method.
+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned LineSegments Object. +
+
+ Clone a LineSegments Object. +
+

Source

diff --git a/docs/api/objects/Mesh.html b/docs/api/objects/Mesh.html index cd32dfc54c..da965d2ee4 100644 --- a/docs/api/objects/Mesh.html +++ b/docs/api/objects/Mesh.html @@ -96,6 +96,14 @@
Get intersections between a casted ray and this mesh. [page:Raycaster.intersectObject] will call this method.
+ +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned Mesh Object. +
+
+ Clone a Mesh Object. +

Source

diff --git a/docs/api/objects/MorphAnimMesh.html b/docs/api/objects/MorphAnimMesh.html index c43ad3ac0f..4d3831bf9a 100644 --- a/docs/api/objects/MorphAnimMesh.html +++ b/docs/api/objects/MorphAnimMesh.html @@ -165,6 +165,14 @@ Defines an animation. Sets the geometry.animations[label] to be an object with the start and end properties. +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned MorphAnimMesh Object. +
+
+ Clone a MorphAnimMesh Object. +
+

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] diff --git a/docs/api/objects/PointCloud.html b/docs/api/objects/PointCloud.html index ca4e488c45..1df63775c6 100644 --- a/docs/api/objects/PointCloud.html +++ b/docs/api/objects/PointCloud.html @@ -47,6 +47,13 @@ Get intersections between a casted ray and this PointCloud. [page:Raycaster.intersectObject] will call this method. +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned PointCloud Object. +
+
+ Clone a PointCloud Object. +

Source

diff --git a/docs/api/objects/Skeleton.html b/docs/api/objects/Skeleton.html index 9a9569cee7..e09c7eaf73 100644 --- a/docs/api/objects/Skeleton.html +++ b/docs/api/objects/Skeleton.html @@ -120,6 +120,10 @@ This is called automatically by the [page:WebGLRenderer] if the skeleton is used with a [page:SkinnedMesh]. +

[method:Skeleton clone]()

+
+ Clone a Skeleton Object. +

Source

diff --git a/docs/api/objects/SkinnedMesh.html b/docs/api/objects/SkinnedMesh.html index 5ce5e8acb6..62141e3943 100644 --- a/docs/api/objects/SkinnedMesh.html +++ b/docs/api/objects/SkinnedMesh.html @@ -131,6 +131,14 @@ This method adds the bone to the skinned mesh when it is provided. It creates a new bone and adds that when no bone is given. +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned SkinnedMesh Object. +
+
+ Clone a SkinnedMesh Object. +
+

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] diff --git a/docs/api/objects/Sprite.html b/docs/api/objects/Sprite.html index e6ff5c9943..a5a0469f95 100644 --- a/docs/api/objects/Sprite.html +++ b/docs/api/objects/Sprite.html @@ -47,7 +47,14 @@
This creates a new clone of the sprite.
- + +

[method:Object3D clone]([page:Object3D object])

+
+ object -- (optional) Object3D which needs to be cloned. If undefined, clone method will create a new cloned Sprite Object. +
+
+ Clone a Sprite Object. +

Source

-- GitLab