From 70c263794fddef0b641c7720066ea9e561a91f73 Mon Sep 17 00:00:00 2001 From: aardgoose Date: Tue, 26 Apr 2016 17:55:46 +0100 Subject: [PATCH] Docs: add some default values for clock and raycaster * default value for constructor autostart * document default values for optional parameters * Revert "document default values for optional parameters" This reverts commit f1d33aa28401658e3622852755a1b5cb7b0e15c6. * document defaults for raycaster methods --- docs/api/core/Clock.html | 4 ++-- docs/api/core/Raycaster.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/api/core/Clock.html b/docs/api/core/Clock.html index 7c5f006054..8e27c32151 100644 --- a/docs/api/core/Clock.html +++ b/docs/api/core/Clock.html @@ -1,7 +1,7 @@ - + @@ -18,7 +18,7 @@

[name]( [page:Boolean autoStart] )

- autoStart — Automatically start the clock. + autoStart — Automatically start the clock. Default is true.

Properties

diff --git a/docs/api/core/Raycaster.html b/docs/api/core/Raycaster.html index 36576c3a19..be5b8b3ca8 100644 --- a/docs/api/core/Raycaster.html +++ b/docs/api/core/Raycaster.html @@ -129,7 +129,7 @@

[page:Object3D object] — The object to check for intersection with the ray.
- [page:Boolean recursive] — If set, it also checks all descendants. Otherwise it only checks intersecton with the object. + [page:Boolean recursive] — If true, it also checks all descendants. Otherwise it only checks intersecton with the object. Default is false.

@@ -159,7 +159,7 @@

[method:Array intersectObjects]( [page:Array objects], [page:Boolean recursive] )

[page:Array objects] — The objects to check for intersection with the ray.
- [page:Boolean recursive] — If set, it also checks all descendants of the objects. Otherwise it only checks intersecton with the objects. + [page:Boolean recursive] — If true, it also checks all descendants of the objects. Otherwise it only checks intersecton with the objects. Default is false.
Checks all intersection between the ray and the objects with or without the descendants. Intersections are returned sorted by distance, closest first. Intersections are of the same form as those returned by [page:.intersectObject]. -- GitLab