View angle-between-points.js
This file contains 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
var p1 = { | |
x: 20, | |
y: 20 | |
}; | |
var p2 = { | |
x: 40, | |
y: 40 | |
}; |
View Dark Theme.html
This file contains 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
<!-- Load Feather code --> | |
<script type="text/javascript" src="http://feather.aviary.com/js/feather_beta.js"></script> | |
<!-- Instantiate Feather --> | |
<script type='text/javascript'> | |
var featherEditor = new Aviary.Feather({ | |
apiKey: 'YOUR_KEY', | |
apiVersion: 3, | |
tools: 'all', | |
appendTo: '', |
View Light Theme.html
This file contains 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
<!-- Load Feather code --> | |
<script type="text/javascript" src="http://feather.aviary.com/js/feather_beta.js"></script> | |
<!-- Instantiate Feather --> | |
<script type='text/javascript'> | |
var featherEditor = new Aviary.Feather({ | |
apiKey: 'YOUR_KEY', | |
apiVersion: 3, | |
tools: 'all', | |
appendTo: '', |
View Aviary Web Editor Hi-Res
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Aviary Web Editor</title> | |
</head> | |
<body> | |
<img id="test" src="http://images.aviary.com/imagesv5/feather_default.jpg" /> | |
<script src="http://feather.aviary.com/imaging/v2/editor.js"></script> |