scax-engine 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/scax-engine.cjs
CHANGED
|
@@ -9137,9 +9137,9 @@ class SCAXEngineCore {
|
|
|
9137
9137
|
traced_rays: tracedRays,
|
|
9138
9138
|
info: {
|
|
9139
9139
|
astigmatism: {
|
|
9140
|
-
eye:
|
|
9140
|
+
eye: this.principalMeridiansFromPowers([this.eyePower]),
|
|
9141
9141
|
lens: this.lensPowers.map((power) => this.principalMeridiansFromPowers([power])),
|
|
9142
|
-
combined:
|
|
9142
|
+
combined: this.principalMeridiansFromPowers([this.eyePower, ...this.lensPowers]),
|
|
9143
9143
|
},
|
|
9144
9144
|
prism: {
|
|
9145
9145
|
eye: this.toPrismSummaryItem(lightDeviation.eye_prism_effect),
|
package/dist/scax-engine.js
CHANGED
|
@@ -9135,9 +9135,9 @@ class SCAXEngineCore {
|
|
|
9135
9135
|
traced_rays: tracedRays,
|
|
9136
9136
|
info: {
|
|
9137
9137
|
astigmatism: {
|
|
9138
|
-
eye:
|
|
9138
|
+
eye: this.principalMeridiansFromPowers([this.eyePower]),
|
|
9139
9139
|
lens: this.lensPowers.map((power) => this.principalMeridiansFromPowers([power])),
|
|
9140
|
-
combined:
|
|
9140
|
+
combined: this.principalMeridiansFromPowers([this.eyePower, ...this.lensPowers]),
|
|
9141
9141
|
},
|
|
9142
9142
|
prism: {
|
|
9143
9143
|
eye: this.toPrismSummaryItem(lightDeviation.eye_prism_effect),
|
package/dist/scax-engine.umd.js
CHANGED
|
@@ -9141,9 +9141,9 @@
|
|
|
9141
9141
|
traced_rays: tracedRays,
|
|
9142
9142
|
info: {
|
|
9143
9143
|
astigmatism: {
|
|
9144
|
-
eye:
|
|
9144
|
+
eye: this.principalMeridiansFromPowers([this.eyePower]),
|
|
9145
9145
|
lens: this.lensPowers.map((power) => this.principalMeridiansFromPowers([power])),
|
|
9146
|
-
combined:
|
|
9146
|
+
combined: this.principalMeridiansFromPowers([this.eyePower, ...this.lensPowers]),
|
|
9147
9147
|
},
|
|
9148
9148
|
prism: {
|
|
9149
9149
|
eye: this.toPrismSummaryItem(lightDeviation.eye_prism_effect),
|
|
@@ -97,9 +97,9 @@ export type PrismSummaryItem = {
|
|
|
97
97
|
};
|
|
98
98
|
export type SimulationResultInfo = {
|
|
99
99
|
astigmatism: {
|
|
100
|
-
eye: AstigmatismSummaryItem
|
|
100
|
+
eye: AstigmatismSummaryItem;
|
|
101
101
|
lens: AstigmatismSummaryItem[];
|
|
102
|
-
combined: AstigmatismSummaryItem
|
|
102
|
+
combined: AstigmatismSummaryItem;
|
|
103
103
|
};
|
|
104
104
|
prism: {
|
|
105
105
|
eye: PrismSummaryItem;
|
package/package.json
CHANGED