- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将发布整个代码:
import controlP5.ControlP5;
import processing.core.*;
import processing.core.PApplet;
import processing.core.PFont;
import processing.core.PImage;
import processing.core.PShape;
import processing.event.MouseEvent;
import processing.data.*;
import processing.event.*;
import processing.opengl.*;
public class Two_Maps_Texture extends PApplet {
PFont title;
PFont label;
PImage worldMap;
PImage skyBackground;
PShape box;
Table table, table2;
int rowCount;
float x1, y1, z1, x2, y2, z2;
//Interaction Zoom and Pan Variables:
float zoom = 600;
float panLeft = 0;
float panTop = 0;
DestinationToTrip fromUSA;
DestinationToTrip toUSA;
ControlP5 button1;
ControlP5 button2;
boolean isFromUSAVisible = false;
boolean isToUSAVisible = false;
public void setup() {
table = new Table("From_USA_Coordinates.tsv");
table2 = new Table("To_USA.tsv");
rowCount = table.getRowCount();
worldMap = loadImage("world.topo.bathy.200406.3x5400x2700.jpg");
//skyBackground = loadImage("Screen-Shot-2018-04-28-at-7.46.41-PM");
//skyBackground.resize(1400, 800);
worldMap.resize(500, 300);
textureMode(NORMAL);
fill(255);
//stroke(color(44,48,32));
box = createShape(BOX, -650, 300, 0);
box.beginShape(BOX);
box.endShape();
box.setTexture(worldMap);
fromUSA = new DestinationToTrip(table);
toUSA = new DestinationToTrip(table2);
title = loadFont("Tahoma-Bold-48.vlw");
label = loadFont("Tahoma-48.vlw");
fill(150);
//pushMatrix();
camera();
button1 = new ControlP5(this);
button1.addButton("From_USA_to_Other_Countries").setValue(1).setPosition((100), (height-150)).setSize(200, 100).setColorBackground(color(76,112,170)).setVisible(true);
button2 = new ControlP5(this);
button2.addButton("From_Other_Countries_to_USA").setValue(0).setPosition((350), (height-150)).setSize(200, 100).setColorBackground(color(76,112,170));
//popMatrix();
}
public void draw() {
background(0xff181c70);
fill(0);
titlesAndLegends();
boxSetup();
if(isFromUSAVisible == true) {
fromUSA.displayCurves(table, 0xff4185bf);
}
if(isToUSAVisible == true){
pushMatrix();
toUSA.displayCurves(table2, 0xffdfb34a);
popMatrix();
}
}
public void boxSetup(){
camera(panLeft, zoom , zoom, panLeft, -190, panTop, 0, 1, 0); // eye(0, 600, 600) center(0, 0, 0) up(0, 1, 0)
pushMatrix();
translate(-350, 0, 0);
shape(box);
popMatrix();
pushMatrix();
translate(350, 0, 0);
shape(box);
popMatrix();
}
public void titlesAndLegends() {
pushMatrix();
camera();
textAlign(CENTER);
textSize(40);
fill(0xff91cd83);
textFont(title);
text("Flights Involving USA - 2019", width/2, 90);
textFont(label);
if(isFromUSAVisible == true) {
textSize(20);
fill(0xff4185bf);
text("USA to Other Country", width/2, 150);
} if(isToUSAVisible == true) {
textSize(20);
fill(0xffdfb34a);
text("Other Countries to USA", width/2, 180);
}
popMatrix();
}
public void mouseDragged() {
if((mouseX- pmouseX) > 0){
panLeft -= 5;
} else {
panLeft += 5;
}
}
public void mouseWheel(MouseEvent event) {
float e = event.getCount();
if(e == 1) {
zoom += 30;
}else {
zoom -= 30;
}
}
public void From_USA_to_Other_Countries() {
if(!isFromUSAVisible) {
isFromUSAVisible = true;
}else {
isFromUSAVisible = false;
}
}
public void From_Other_Countries_to_USA() {
if(!isToUSAVisible) {
isToUSAVisible = true;
}else {
isToUSAVisible = false;
}
}
class DestinationToTrip {
Table table;
int rowCount;
float x1, y1, z1, x2, y2, z2;
int stroke = 0xffF05252;
DestinationToTrip(Table table) {
this.table = table;
}
public void displayCurves(Table table, int stroke) {
rowCount = table.getRowCount();
table = new Table("From_USA_Coordinates.tsv");
pushMatrix();
// To use the center of the left box as center coordinates
translate(-350, 0, 0);
textSize(15);
for(int row = 1; row < rowCount; row++) {
float USALatitude = table.getFloat(row, 3);
float USALongitude = table.getFloat(row, 4);
String countryName = table.getString(row,1);
//Mapped Within X-axis of the left side map box
float mappedLatitude = map(USALatitude,-90, 90, 150, -150); // Latitude is in Y axis
float mappedLongitude = map(USALongitude, -180, 180, -325, 325); // Longitude in X Axis
x1 = mappedLongitude;
y1 = mappedLatitude;
z1 = 0;
float tripCountryLatitude = table.getFloat(row, 5);
float tripCountryLongitude = table.getFloat(row, 6);
float tripLatitude = map(tripCountryLatitude, -90, 90, 150, -150); // In Y, same mapping
float tripLongitude = map(tripCountryLongitude, -180, 180, 375, 1025);
// In X, having the position of the right box depending on the coordinates center
x2 = tripLongitude;
y2 = tripLatitude;
z2 = 0;
float zOff = map(0, 0, height, 300, 0); // Move mouse up and down
float a = (x2-x1)/3;
float b = (y2-y1)/3;
stroke(stroke);
noFill();
bezier(x1, y1, z1, // First point
x1 + a, y1 + b, z1 + zOff, // First intermediate point
x2 - a, y2 - b, z2 + zOff, // Second intermediate point
x2, y2, z2);
//rotate(PI);
stroke(255);
fill(255);
text(countryName, x2-10, y2+10, z2+20);
}
popMatrix();
}
}
class Table {
int rowCount;
String[][] data;
Table(String filename) {
String[] rows = loadStrings(filename);
data = new String[rows.length][];
for (int i = 0; i < rows.length; i++) {
if (trim(rows[i]).length() == 0) {
continue; // skip empty rows
}
if (rows[i].startsWith("#")) {
continue; // skip comment lines
}
// split the row on the tabs
String[] pieces = split(rows[i], TAB);
// copy to the table array
data[rowCount] = pieces;
rowCount++;
// this could be done in one fell swoop via:
//data[rowCount++] = split(rows[i], TAB);
}
// resize the 'data' array as necessary
data = (String[][]) subset(data, 0, rowCount);
}
public int getRowCount() {
return rowCount;
}
// find a row by its name, returns -1 if no row found
public int getRowIndex(String name) {
for (int i = 0; i < rowCount; i++) {
if (data[i][0].equals(name)) {
return i;
}
}
println("No row named '" + name + "' was found");
return -1;
}
public String getRowName(int row) {
return getString(row, 0);
}
public String getString(int rowIndex, int column) {
return data[rowIndex][column];
}
public String getString(String rowName, int column) {
return getString(getRowIndex(rowName), column);
}
public int getInt(String rowName, int column) {
return parseInt(getString(rowName, column));
}
public int getInt(int rowIndex, int column) {
return parseInt(getString(rowIndex, column));
}
public float getFloat(String rowName, int column) {
return parseFloat(getString(rowName, column));
}
public float getFloat(int rowIndex, int column) {
return parseFloat(getString(rowIndex, column));
}
public void setRowName(int row, String what) {
data[row][0] = what;
}
public void setString(int rowIndex, int column, String what) {
data[rowIndex][column] = what;
}
public void setString(String rowName, int column, String what) {
int rowIndex = getRowIndex(rowName);
data[rowIndex][column] = what;
}
public void setInt(int rowIndex, int column, int what) {
data[rowIndex][column] = str(what);
}
public void setInt(String rowName, int column, int what) {
int rowIndex = getRowIndex(rowName);
data[rowIndex][column] = str(what);
}
public void setFloat(int rowIndex, int column, float what) {
data[rowIndex][column] = str(what);
}
public void setFloat(String rowName, int column, float what) {
int rowIndex = getRowIndex(rowName);
data[rowIndex][column] = str(what);
}
}
public void settings() { size(1400, 800, "P3D"); }
static public void main(String[] passedArgs) {
String[] appletArgs = new String[] { "Two_Maps_Texture" };
if (passedArgs != null) {
PApplet.main(concat(appletArgs, passedArgs));
} else {
PApplet.main(appletArgs);
}
}
}
java.lang.RuntimeException: The P3D renderer is not in the class path. at processing.core.PApplet.makeGraphics(PApplet.java:2311) at processing.core.PApplet.createPrimaryGraphics(PApplet.java:2345) at processing.core.PApplet.initSurface(PApplet.java:10983) at processing.core.PApplet.runSketch(PApplet.java:10922) at processing.core.PApplet.main(PApplet.java:10620) at Two_Maps_Texture.main(Two_Maps_Texture.java:355)
我已经像资源告诉我的那样导入了所有 jar 文件,但仍然收到错误。
最佳答案
确保将 jogl 和gluegen 库添加到构建路径中,以支持 P3D
(OpenGL) 渲染器。
这是 OSX 上的示例:使用 jar files特定于您的平台(操作系统和 CPU 架构)
它们应该位于Java/core/library
内的Processing安装文件夹中。
将相关的 jogl 和gluegen-rt jar 文件添加到项目并将它们添加到构建路径后,您应该能够正确编译
关于java - 从 Eclipse 运行处理时如何解决 java.lang.RuntimeException : The P3D renderer is not in the class path.?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61152015/
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我试图用这种形式简单地获取数字 28 integer+space+integer+integer+space+integer我试过这个正则表达式 \\s\\d\\d\\s 但我得到了两个数字11 和
最近一直在学习D语言。我一直对运行时感到困惑。 从我能收集到的关于它的信息中,(这不是很多)我知道它是一种有助于 D 的一些特性的运行时。像垃圾收集一样,它与您自己的程序一起运行。但是既然 D 是编译
想问一下这两个正则表达式有区别吗? \d\d\d 与 \d{3} 我已经在我的本地机器上使用 Java 和 Windows 操作系统对此进行了测试,两者都工作正常并且结果相同。但是,当在 linux
我正在学习 Go,而且我坚持使用 Go 之旅(exercise-stringer.go:https://tour.golang.org/methods/7)。 这是一些代码: type IPAddr
我在Java正则表达式中发现了一段令我困惑的代码: Pattern.compile( "J.*\\d[0-35-9]-\\d\\d-\\d\\d" ); 要编译的字符串是: String string
我在 ruby 代码上偶然发现了这个。我知道\d{4})\/(\d\d)\/(\d\d)\/(.*)/是什么意思,但是\1-\2-\3-\4 是什么意思? 最佳答案 \1-\2-\3-\4 是 b
我一直在努力解决这个问题,这让我很恼火。我了解 D 运行时库。它是什么,它做什么。我也明白你可以在没有它的情况下编译 D 应用程序。就像 XoMB 所做的那样。好吧,XoMB 定义了自己的运行时,但是
我有两个列表列表,子列表代表路径。我想找到所有路径。 List> pathList1 List> pathList2 当然是天真的解决方案: List> result = new ArrayList>
我需要使用 Regex 格式化一个字符串,该字符串包含数字、字母 a-z 和 A-Z,同时还包含破折号和空格。 从用户输入我有02-219 8 53 24 输出应该是022 198 53 24 我正在
目标是达到与this C++ example相同的效果: 避免创建临时文件。我曾尝试将 C++ 示例翻译为 D,但没有成功。我也尝试过不同的方法。 import std.datetime : benc
tl;dr:你好吗perfect forwarding在 D? 该链接有一个很好的解释,但例如,假设我有这个方法: void foo(T)(in int a, out int b, ref int c
有什么方法可以在 D 中使用abstract auto 函数吗? 如果我声明一个类如下: class MyClass { abstract auto foo(); } 我收到以下错误: mai
有没有人为内存中重叠的数组切片实现交集?算法在没有重叠时返回 []。 当 pretty-print (使用重叠缩进)内存中重叠的数组切片时,我想要这个。 最佳答案 如果您确定它们是数组,那么只需取 p
我已经开始学习 D,但我在使用 Andrei Alexandrescu 所著的 The D Programming Language 一书中提供的示例时遇到了一些麻烦。由于 int 和 ulong 类
如何创建一个不可变的类? 我的目标是创建一个实例始终不可变的类。现在我只是用不可变的方法和构造函数创建了一个“可变”类。我将其称为 mData,m 表示可变。然后我创建一个别名 alias immut
不久前我买了《The D Programming Language》。好书,很有教育意义。但是,我在尝试编译书中列出的语言功能时遇到了麻烦:扩展函数。 在这本书中,Andrei 写了任何可以像这样调用
我在 D http://www.digitalmars.com/d/2.0/lazy-evaluation.html 中找到了函数参数的惰性求值示例 我想知道如何在 D 中实现可能的无限数据结构,就像
这个问题在这里已经有了答案: 12 年前关闭。 Possible Duplicate: Could anyone explain these undefined behaviors (i = i++
当前是否可以跨模块扫描/查询/迭代具有某些属性的所有函数(或类)? 例如: source/packageA/something.d: @sillyWalk(10) void doSomething()
我是一名优秀的程序员,十分优秀!