[ Launch: HCL Gradient ] f762b10605e17b82a40e94508a689a38 by jpfaraco
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FeatureScript 2780; | |
| import(path : "onshape/std/common.fs", version : "2780.0"); | |
| annotation { "Feature Type Name" : "Sine Wave Ring" } | |
| export const sineWaveRing = defineFeature(function(context is Context, id is Id, definition is map) | |
| precondition | |
| { | |
| annotation { "Name" : "Plane", "Filter" : EntityType.FACE || BodyType.MATE_CONNECTOR, "MaxNumberOfPicks" : 1 } | |
| definition.plane is Query; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FeatureScript 2780; | |
| import(path : "onshape/std/common.fs", version : "2780.0"); | |
| annotation { "Feature Type Name" : "Sine wave" } | |
| export const sineWave = defineFeature(function(context is Context, id is Id, definition is map) | |
| precondition | |
| { | |
| annotation { "Name" : "Edge", "Filter" : EntityType.EDGE, "MaxNumberOfPicks" : 1 } | |
| definition.edge is Query; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function RGBtoHSV(r, g, b) { | |
| if (arguments.length === 1) { | |
| g = r.g, b = r.b, r = r.r; | |
| } | |
| var max = Math.max(r, g, b), min = Math.min(r, g, b), | |
| d = max - min, | |
| h, | |
| s = (max === 0 ? 0 : d / max), | |
| v = max / 255; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Hospitalk", | |
| "short_name": "Hospitalk", | |
| "theme_color": "#91aacb", | |
| "background_color": "#91AACB", | |
| "display": "fullscreen", | |
| "Scope": "/", | |
| "start_url": "/", | |
| "icons": [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible). | |
| // Tweak the makePrettyJSON_ function to customize what kind of JSON to export. | |
| var FORMAT_ONELINE = 'One-line'; | |
| var FORMAT_MULTILINE = 'Multi-line'; | |
| var FORMAT_PRETTY = 'Pretty'; | |
| var LANGUAGE_JS = 'JavaScript'; | |
| var LANGUAGE_PYTHON = 'Python'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Web App", | |
| "icons": [ | |
| { | |
| "src": "launcher-icon-0-75x.png", | |
| "sizes": "36x36", | |
| "type": "image/png" | |
| }, | |
| { | |
| "src": "launcher-icon-1x.png", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Verifying my Blockstack ID is secured with the address 1FqL5fzzGr5SgkjcHgRWAsC4RDy5SJqZEg https://explorer.blockstack.org/address/1FqL5fzzGr5SgkjcHgRWAsC4RDy5SJqZEg | |
| Verifying that "jpfaraco.id" is my Blockstack ID. https://explorer.blockstack.org/name/jpfaraco.id |
[ Launch: Simple canvas particle system ] 5210156 by jpfaraco