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 java.awt.geom.Rectangle2D; | |
import java.awt.geom.Point2D; | |
public static final int FRAME_X = 1024; | |
public static final int FRAME_Y = 1024; | |
public static final int GENERATION_NUM = 4; | |
public static final int WALL_POWER = 10; | |
public static final int COFF_COULUMB = 1; | |
private ArrayList<Body> bodies; |
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 lang="en"> | |
... | |
<script> | |
function hover_province(var state_num){ | |
// when hovering a state on the right map, show the chart relating to it. | |
$("#income_graph").load("graph/"+state_num); | |
} |
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
models = [{"attributes": | |
{"data_source":{"type":"ColumnDataSource","id":"3c6d2ed9-dcfc-4b9f-8d9b-0c26a0272ccc"} | |
"doc":null, | |
"id":"3c6d2ed9-dcfc-4b9f-8d9b-0c26a0272ccc" | |
}. | |
"type":"Glyph", | |
"id":"3c6d2ed9-dcfc-4b9f-8d9b-0c26a0272ccc" | |
}, | |
{"attributes": | |
{"column_names":["fill_color","line_color","shape","x","y"], |
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
require 'plotrb' | |
N = 1000 | |
x_arr = NVector.linspace(0, 5 * Math::PI, N) | |
y_arr = NMath.sin(x_arr) | |
line = Line.new(x: x_arr, y: y_arr) do | |
axis_titles(x: "x", y: "y") | |
legend(title: "sin") | |
end |
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
require 'plotrb' | |
values = [] | |
for x in -5..5 | |
for z in -5..5 | |
values.push({x: x, y: (x*x+z*z)/5, z: z}) | |
end | |
end |
This is a sample to show how Elegans.Particles works.
Click here to learn more about Elegans.
This is a sample to show how Elegans.Surface works. This shows a graph of the equetion below:
Click here to learn more about Elegans.
This is a sample to show how Elegans.Line works. This shows a sample solution in the Lorenz attractor, when p=10, r=28, b=8/3.
Click here to learn more about Elegans.
This is a sample to show how Elegans.Scatter works.
Click here to learn more about Elegans.
OlderNewer