From 863d10f8cc0517d03724be923e4d67a429ca1485 Mon Sep 17 00:00:00 2001 From: Don McCurdy Date: Wed, 26 Apr 2023 09:26:26 -0400 Subject: [PATCH] Docs: Improve color space constant documentation --- docs/api/en/constants/Core.html | 12 ++++++++---- docs/api/en/constants/Textures.html | 7 +++---- docs/api/fr/constants/Core.html | 6 +++--- docs/api/fr/constants/Textures.html | 7 +++---- docs/api/it/constants/Core.html | 6 +++--- docs/api/it/constants/Textures.html | 7 +++---- docs/api/ko/constants/Textures.html | 7 +++---- docs/api/pt-br/constants/Core.html | 6 +++--- docs/api/pt-br/constants/Textures.html | 7 +++---- docs/api/zh/constants/Textures.html | 7 +++---- 10 files changed, 35 insertions(+), 37 deletions(-) diff --git a/docs/api/en/constants/Core.html b/docs/api/en/constants/Core.html index 9ad1ae13b3a35b..f7305c9ab83fc1 100644 --- a/docs/api/en/constants/Core.html +++ b/docs/api/en/constants/Core.html @@ -21,11 +21,15 @@

Revision Number

Color Spaces

-THREE.NoColorSpace -THREE.SRGBColorSpace -THREE.LinearSRGBColorSpace +THREE.NoColorSpace = "" +THREE.SRGBColorSpace = "srgb" +THREE.LinearSRGBColorSpace = "srgb-linear" -

[page:NoColorSpace] defines no specific color space.

+

+ [page:NoColorSpace] defines no specific color space. It is commonly used + for textures including normal maps, roughness maps, metalness maps, + ambient occlusion maps, and other non-color data. +

[page:SRGBColorSpace] (“srgb”) refers to the color space defined by the Rec. 709 primaries, D65 white point, and nonlinear sRGB transfer diff --git a/docs/api/en/constants/Textures.html b/docs/api/en/constants/Textures.html index 9f2f2831f08066..72079befe2581e 100644 --- a/docs/api/en/constants/Textures.html +++ b/docs/api/en/constants/Textures.html @@ -601,10 +601,9 @@

Depth Packing

Color Space

- THREE.NoColorSpace - THREE.SRGBColorSpace - THREE.LinearSRGBColorSpace - THREE.DisplayP3ColorSpace + THREE.NoColorSpace = "" + THREE.SRGBColorSpace = "srgb" + THREE.LinearSRGBColorSpace = "srgb-linear"

Used to define the color space of textures (and the output color space of diff --git a/docs/api/fr/constants/Core.html b/docs/api/fr/constants/Core.html index 0eed0b68a25133..820bcbe49e1eb3 100644 --- a/docs/api/fr/constants/Core.html +++ b/docs/api/fr/constants/Core.html @@ -21,9 +21,9 @@

Numéro de révision

Espaces colorimétriques

-THREE.NoColorSpace -THREE.SRGBColorSpace -THREE.LinearSRGBColorSpace +THREE.NoColorSpace = "" +THREE.SRGBColorSpace = "srgb" +THREE.LinearSRGBColorSpace = "srgb-linear"

[page:NoColorSpace] ne définit aucun espace colorimétrique spécifique. diff --git a/docs/api/fr/constants/Textures.html b/docs/api/fr/constants/Textures.html index 165a5bc54cc71c..f42d8ec9eb119a 100644 --- a/docs/api/fr/constants/Textures.html +++ b/docs/api/fr/constants/Textures.html @@ -545,10 +545,9 @@

Depth Packing

Color Space

- THREE.NoColorSpace - THREE.SRGBColorSpace - THREE.LinearSRGBColorSpace - THREE.DisplayP3ColorSpace + THREE.NoColorSpace = "" + THREE.SRGBColorSpace = "srgb" + THREE.LinearSRGBColorSpace = "srgb-linear"

Used to define the color space of textures (and the output color space of the renderer).

diff --git a/docs/api/it/constants/Core.html b/docs/api/it/constants/Core.html index 2ce0b2dfeb1d19..ce86c87eca583f 100644 --- a/docs/api/it/constants/Core.html +++ b/docs/api/it/constants/Core.html @@ -21,9 +21,9 @@

Numero di Revisione

Spazi Colore

-THREE.NoColorSpace -THREE.SRGBColorSpace -THREE.LinearSRGBColorSpace +THREE.NoColorSpace = "" +THREE.SRGBColorSpace = "srgb" +THREE.LinearSRGBColorSpace = "srgb-linear"

[page:NoColorSpace] non definisce uno spazio colore specifico. diff --git a/docs/api/it/constants/Textures.html b/docs/api/it/constants/Textures.html index cf7058e026fe9d..7f9977c546ecdf 100644 --- a/docs/api/it/constants/Textures.html +++ b/docs/api/it/constants/Textures.html @@ -545,10 +545,9 @@

Depth Packing

Color Space

- THREE.NoColorSpace - THREE.SRGBColorSpace - THREE.LinearSRGBColorSpace - THREE.DisplayP3ColorSpace + THREE.NoColorSpace = "" + THREE.SRGBColorSpace = "srgb" + THREE.LinearSRGBColorSpace = "srgb-linear"

Used to define the color space of textures (and the output color space of the renderer).

diff --git a/docs/api/ko/constants/Textures.html b/docs/api/ko/constants/Textures.html index ec9d7a439d3506..3e4e62177f844d 100644 --- a/docs/api/ko/constants/Textures.html +++ b/docs/api/ko/constants/Textures.html @@ -533,10 +533,9 @@

Depth Packing

Color Space

- THREE.NoColorSpace - THREE.SRGBColorSpace - THREE.LinearSRGBColorSpace - THREE.DisplayP3ColorSpace + THREE.NoColorSpace = "" + THREE.SRGBColorSpace = "srgb" + THREE.LinearSRGBColorSpace = "srgb-linear"

Used to define the color space of textures (and the output color space of the renderer).

diff --git a/docs/api/pt-br/constants/Core.html b/docs/api/pt-br/constants/Core.html index 1da85ef627c544..669232320f52f7 100644 --- a/docs/api/pt-br/constants/Core.html +++ b/docs/api/pt-br/constants/Core.html @@ -21,9 +21,9 @@

Número de Revisão

Espaço de Cores

-THREE.NoColorSpace -THREE.SRGBColorSpace -THREE.LinearSRGBColorSpace +THREE.NoColorSpace = "" +THREE.SRGBColorSpace = "srgb" +THREE.LinearSRGBColorSpace = "srgb-linear"

[page:NoColorSpace] não define nenhum espaço de cor específico. diff --git a/docs/api/pt-br/constants/Textures.html b/docs/api/pt-br/constants/Textures.html index 1d6e5a7655fb67..43b5f6c28f539e 100644 --- a/docs/api/pt-br/constants/Textures.html +++ b/docs/api/pt-br/constants/Textures.html @@ -545,10 +545,9 @@

Depth Packing

Color Space

- THREE.NoColorSpace - THREE.SRGBColorSpace - THREE.LinearSRGBColorSpace - THREE.DisplayP3ColorSpace + THREE.NoColorSpace = "" + THREE.SRGBColorSpace = "srgb" + THREE.LinearSRGBColorSpace = "srgb-linear"

Used to define the color space of textures (and the output color space of the renderer).

diff --git a/docs/api/zh/constants/Textures.html b/docs/api/zh/constants/Textures.html index ab232d8b9827d0..893a4f5d06873a 100644 --- a/docs/api/zh/constants/Textures.html +++ b/docs/api/zh/constants/Textures.html @@ -528,10 +528,9 @@

Depth Packing

Color Space

- THREE.NoColorSpace - THREE.SRGBColorSpace - THREE.LinearSRGBColorSpace - THREE.DisplayP3ColorSpace + THREE.NoColorSpace = "" + THREE.SRGBColorSpace = "srgb" + THREE.LinearSRGBColorSpace = "srgb-linear"

Used to define the color space of textures (and the output color space of the renderer).