Skip to content

Commit

Permalink
Default view
Browse files Browse the repository at this point in the history
  • Loading branch information
Tetsuro Sakamoto committed Jun 9, 2024
1 parent 0621175 commit f86cd1d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Parameter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { humanReadable } from './utils';
import Document from './Document.vue'
const mode = ref("info")
const mode = ref("control")
const nRays = computed(() => {
return 1 << state.value.nRaysLog
Expand Down
8 changes: 4 additions & 4 deletions src/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const field = ref(field0())

export const options0 = () => {
return {
advanced: true,
advanced: false,
lens: true,
lensIdeal: true,
lensFocalPoints: false,
Expand All @@ -102,9 +102,9 @@ export const options0 = () => {
grid: false,
opticalAxis: false,
curvature: false,
depthOfField: true,
angleOfView: true,
circleOfConfusion: true,
depthOfField: false,
angleOfView: false,
circleOfConfusion: false,
}
}
export const options = ref(options0())
Expand Down

0 comments on commit f86cd1d

Please sign in to comment.