|
@@ -5,6 +5,7 @@ import {
|
|
Matrix3,
|
|
Matrix3,
|
|
Matrix4,
|
|
Matrix4,
|
|
Object3D,
|
|
Object3D,
|
|
|
|
+ SRGBColorSpace,
|
|
Vector3
|
|
Vector3
|
|
} from 'three';
|
|
} from 'three';
|
|
import { Projector } from '../renderers/Projector.js';
|
|
import { Projector } from '../renderers/Projector.js';
|
|
@@ -75,6 +76,8 @@ class SVGRenderer {
|
|
|
|
|
|
this.overdraw = 0.5;
|
|
this.overdraw = 0.5;
|
|
|
|
|
|
|
|
+ this.outputColorSpace = SRGBColorSpace;
|
|
|
|
+
|
|
this.info = {
|
|
this.info = {
|
|
|
|
|
|
render: {
|
|
render: {
|
|
@@ -155,7 +158,7 @@ class SVGRenderer {
|
|
this.clear = function () {
|
|
this.clear = function () {
|
|
|
|
|
|
removeChildNodes();
|
|
removeChildNodes();
|
|
- _svg.style.backgroundColor = _clearColor.getStyle();
|
|
|
|
|
|
+ _svg.style.backgroundColor = _clearColor.getStyle( _this.outputColorSpace );
|
|
|
|
|
|
};
|
|
};
|
|
|
|
|
|
@@ -173,7 +176,7 @@ class SVGRenderer {
|
|
if ( background && background.isColor ) {
|
|
if ( background && background.isColor ) {
|
|
|
|
|
|
removeChildNodes();
|
|
removeChildNodes();
|
|
- _svg.style.backgroundColor = background.getStyle();
|
|
|
|
|
|
+ _svg.style.backgroundColor = background.getStyle( _this.outputColorSpace );
|
|
|
|
|
|
} else if ( this.autoClear === true ) {
|
|
} else if ( this.autoClear === true ) {
|
|
|
|
|
|
@@ -389,7 +392,7 @@ class SVGRenderer {
|
|
|
|
|
|
if ( material.isSpriteMaterial || material.isPointsMaterial ) {
|
|
if ( material.isSpriteMaterial || material.isPointsMaterial ) {
|
|
|
|
|
|
- style = 'fill:' + material.color.getStyle() + ';fill-opacity:' + material.opacity;
|
|
|
|
|
|
+ style = 'fill:' + material.color.getStyle( _this.outputColorSpace ) + ';fill-opacity:' + material.opacity;
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
@@ -403,7 +406,7 @@ class SVGRenderer {
|
|
|
|
|
|
if ( material.isLineBasicMaterial ) {
|
|
if ( material.isLineBasicMaterial ) {
|
|
|
|
|
|
- let style = 'fill:none;stroke:' + material.color.getStyle() + ';stroke-opacity:' + material.opacity + ';stroke-width:' + material.linewidth + ';stroke-linecap:' + material.linecap;
|
|
|
|
|
|
+ let style = 'fill:none;stroke:' + material.color.getStyle( _this.outputColorSpace ) + ';stroke-opacity:' + material.opacity + ';stroke-width:' + material.linewidth + ';stroke-linecap:' + material.linecap;
|
|
|
|
|
|
if ( material.isLineDashedMaterial ) {
|
|
if ( material.isLineDashedMaterial ) {
|
|
|
|
|
|
@@ -463,11 +466,11 @@ class SVGRenderer {
|
|
|
|
|
|
if ( material.wireframe ) {
|
|
if ( material.wireframe ) {
|
|
|
|
|
|
- style = 'fill:none;stroke:' + _color.getStyle() + ';stroke-opacity:' + material.opacity + ';stroke-width:' + material.wireframeLinewidth + ';stroke-linecap:' + material.wireframeLinecap + ';stroke-linejoin:' + material.wireframeLinejoin;
|
|
|
|
|
|
+ style = 'fill:none;stroke:' + _color.getStyle( _this.outputColorSpace ) + ';stroke-opacity:' + material.opacity + ';stroke-width:' + material.wireframeLinewidth + ';stroke-linecap:' + material.wireframeLinecap + ';stroke-linejoin:' + material.wireframeLinejoin;
|
|
|
|
|
|
} else {
|
|
} else {
|
|
|
|
|
|
- style = 'fill:' + _color.getStyle() + ';fill-opacity:' + material.opacity;
|
|
|
|
|
|
+ style = 'fill:' + _color.getStyle( _this.outputColorSpace ) + ';fill-opacity:' + material.opacity;
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|