Skip to content
Snippets Groups Projects
Commit d07d9d3f authored by Alexander Rose's avatar Alexander Rose
Browse files

add missing dpoitIterations param

parent 7bcbcd5a
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ export const Canvas3DParams = { ...@@ -84,7 +84,7 @@ export const Canvas3DParams = {
cameraResetDurationMs: PD.Numeric(250, { min: 0, max: 1000, step: 1 }, { description: 'The time it takes to reset the camera.' }), cameraResetDurationMs: PD.Numeric(250, { min: 0, max: 1000, step: 1 }, { description: 'The time it takes to reset the camera.' }),
sceneRadiusFactor: PD.Numeric(1, { min: 1, max: 10, step: 0.1 }), sceneRadiusFactor: PD.Numeric(1, { min: 1, max: 10, step: 0.1 }),
transparentBackground: PD.Boolean(false), transparentBackground: PD.Boolean(false),
dpoitIterations: PD.Numeric(2, { min: 1, max: 1000, step: 1 }), dpoitIterations: PD.Numeric(2, { min: 1, max: 10, step: 1 }),
multiSample: PD.Group(MultiSampleParams), multiSample: PD.Group(MultiSampleParams),
postprocessing: PD.Group(PostprocessingParams), postprocessing: PD.Group(PostprocessingParams),
......
...@@ -22,6 +22,7 @@ import { AssetManager } from '../../mol-util/assets'; ...@@ -22,6 +22,7 @@ import { AssetManager } from '../../mol-util/assets';
export const ImageParams = { export const ImageParams = {
transparentBackground: PD.Boolean(false), transparentBackground: PD.Boolean(false),
dpoitIterations: PD.Numeric(2, { min: 1, max: 10, step: 1 }),
multiSample: PD.Group(MultiSampleParams), multiSample: PD.Group(MultiSampleParams),
postprocessing: PD.Group(PostprocessingParams), postprocessing: PD.Group(PostprocessingParams),
marking: PD.Group(MarkingParams), marking: PD.Group(MarkingParams),
......
...@@ -61,6 +61,7 @@ type Props = { ...@@ -61,6 +61,7 @@ type Props = {
postprocessing: PostprocessingProps postprocessing: PostprocessingProps
marking: MarkingProps marking: MarkingProps
transparentBackground: boolean; transparentBackground: boolean;
dpoitIterations: number;
} }
type RenderContext = { type RenderContext = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment