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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>svg-example</title> | |
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> | |
<style> | |
.bottom { | |
fill: blue; | |
stroke: blue; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>coroutine-traversal-example</title> | |
</head> | |
<script src="traversal.js"></script> | |
<body> | |
</body> | |
<script> |
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
duration='00:59:00' | |
noisetype='pinknoise' | |
progress='--no-show-progress' | |
noisetype="pinknoise" | |
band_center="1000" | |
band_width="499" | |
tremolo_speed="0.01" | |
tremolo_depth="43" |
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
import QtQuick 1.0 | |
Rectangle { | |
height: 300 | |
width: 400 | |
color: "gray" | |
// This text element is for visual feedback when the signal fires | |
Text { | |
text: "(empty)" |
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
#include "Turret.h" | |
#include <cmath> | |
#include <algorithm> | |
#include <cassert> | |
namespace | |
{ | |
const double TWOPI = 2.0 * M_PI; | |
} |
NewerOlder