Mercurial > hg > orthanc-stone
view Applications/Samples/rt-viewer-demo/rt-viewer-demo.html @ 632:500c3f70b6c2
- Added a ClearAllChains method to PolylineSceneLayer --> revision must change
when calling it ==> BumpRevision has been added to base class
- Added some docs
= Added GetMinDepth + GetMaxDepth to Scene2D (to alleviate the need for app-
specific "Z depth registry" : clients may simply add a new layer on top or at
the bottom of the existing layer set.
- Added the line tracker measurement tools, commands and trackers. Generic base
classes + Line measure
- started work on the line measure handles
| author | Benjamin Golinvaux <bgo@osimis.io> |
|---|---|
| date | Thu, 09 May 2019 10:41:31 +0200 |
| parents | 1d9deb4ee84c |
| children |
line wrap: on
line source
<!doctype html> <html lang="us"> <head> <meta charset="utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <!-- Disable pinch zoom on mobile devices --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <meta name="HandheldFriendly" content="true" /> <title>Simple Viewer</title> <link href="samples-styles.css" rel="stylesheet" /> <body> <div style="width: 100%; height: 5%"> <p>RTSTRUCT viewer demonstration</p> </div> <div style="width: 100%; height: 95%"> <canvas id="canvas"></canvas> </div> <script type="text/javascript" src="app-rt-viewer-demo.js"></script> </body> </html>
