Skip to content

Commit

Permalink
add: zoom parameter to quilt (#26)
Browse files Browse the repository at this point in the history
* add: zoom parameter to quilt
  • Loading branch information
BryanChrisBrown authored Jun 12, 2024
1 parent 7b9c765 commit caa093a
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/looking-glass-bridge.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/looking-glass-bridge.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/looking-glass-bridge.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4037,6 +4037,7 @@ const L = (n, e) => i.number().refine((t) => t >= n && t <= e, {
aspect: i.number(),
viewCount: i.number(),
focus: i.number().optional(),
zoom: i.number().optional(),
tag: i.string().optional()
}), ks = i.object({
/**Aspect Ratio of the hologram,
Expand Down
2 changes: 1 addition & 1 deletion dist/looking-glass-bridge.mjs.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/schemas/schema.hologram.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,23 @@ export declare const QuiltHologramArgs: z.ZodObject<{
aspect: z.ZodNumber;
viewCount: z.ZodNumber;
focus: z.ZodOptional<z.ZodNumber>;
zoom: z.ZodOptional<z.ZodNumber>;
tag: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
rows: number;
aspect: number;
columns: number;
viewCount: number;
focus?: number | undefined;
zoom?: number | undefined;
tag?: string | undefined;
}, {
rows: number;
aspect: number;
columns: number;
viewCount: number;
focus?: number | undefined;
zoom?: number | undefined;
tag?: string | undefined;
}>;
export declare const RGBDHologramArgs: z.ZodObject<{
Expand Down
2 changes: 1 addition & 1 deletion dist/tsconfig.tsbuildinfo

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/library/schemas/schema.hologram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const QuiltHologramArgs = z.object({
aspect: z.number(),
viewCount: z.number(),
focus: z.number().optional(),
zoom: z.number().optional(),
tag: z.string().optional(),
})

Expand Down

0 comments on commit caa093a

Please sign in to comment.