@vertexvis/geometry
Advanced tools
Comparing version 0.9.19-canary.14 to 0.9.19
{ | ||
"name": "@vertexvis/geometry", | ||
"version": "0.9.19-canary.14", | ||
"version": "0.9.19", | ||
"description": "Library for 2D and 3D geometric types.", | ||
@@ -42,3 +42,3 @@ "license": "MIT", | ||
"@vertexvis/jest-config-vertexvis": "0.4.4", | ||
"@vertexwebsdk/build": "^0.9.19-canary.14", | ||
"@vertexwebsdk/build": "0.9.19", | ||
"eslint": "^6.1.0", | ||
@@ -53,3 +53,3 @@ "jest": "^24.9.0", | ||
}, | ||
"gitHead": "680458d37cffbbff7f1caa1973ba0850520a5df1" | ||
"gitHead": "07344d8bdf643e895bfb0562e5c9cbe450eadaa0" | ||
} |
@@ -6,2 +6,5 @@ <!-- DO NOT EDIT THE README.md DIRECTLY. THIS FILE IS AUTO-GENERATED. --> | ||
![npm](https://img.shields.io/npm/v/@vertexvis/geometry) | ||
![npm (scoped with tag)](https://img.shields.io/npm/v/@vertexvis/viewer/canary) | ||
2D and 3D Geometry Types for JS. | ||
@@ -13,3 +16,3 @@ | ||
The easiest way to use the helpers provided in this package is by including a `<script>` | ||
The easiest way to use the helpers provided in this package is by including a `<script>` | ||
tag in your HTML file that references our published JS bundles from a CDN. These helpers | ||
@@ -26,7 +29,7 @@ can then be used in combination with our [Viewer SDK](https://www.npmjs.com/package/@vertexvis/viewer) | ||
<script type="module"> | ||
import { Vector3 } from 'https://unpkg.com/@vertexvis/geometry@0.9.18/dist/cdn/bundle.esm.js'; | ||
import { Vector3 } from 'https://unpkg.com/@vertexvis/geometry@0.9.19/dist/cdn/bundle.esm.js'; | ||
async function main() { | ||
const viewer = document.querySelector('#viewer'); | ||
const scene = await viewer.scene(); | ||
const scene = await viewer.scene(); | ||
const camera = scene.camera(); | ||
@@ -44,2 +47,2 @@ | ||
</html> | ||
``` | ||
``` |
396885
45