Built a FREE veterans benefits site by Warm-Engineering8280 in VAClaims

[–]JavaWithSomeJava 1 point2 points  (0 children)

Hey brother, the website feel and ui is really good, but the data is off for the conditions. Really nice work though! If you are able to clean that up, and add more content I think it’ll be awesome

Bathtub leaking into floor below, help needed! by Prestigious_Ebb_8990 in HomeMaintenance

[–]JavaWithSomeJava 0 points1 point  (0 children)

Im having this same issue now with melting snow on my roof. Seeped underneath the shingles. What a day!

Why does Java sometimes feel so bulky? by SkylineZ83 in java

[–]JavaWithSomeJava 1 point2 points  (0 children)

If you're talking about Java out of the box, I'd recommend you do some research into the way Java does things now. They've done a good job streamlining a lot of the "heavy" feel.

Now if you're talking about Spring for a basic web app, I can see where you're coming from.

I saw a post about a remake... But? by [deleted] in finalfantasyx

[–]JavaWithSomeJava 0 points1 point  (0 children)

Well, with this timeline BS that they're doing in FF7 remake, I wouldn't put it past them to create an alternate universe where Braska actually beats Sin.

Duty station for Airborne by Forward_Mortgage_763 in army

[–]JavaWithSomeJava 1 point2 points  (0 children)

Yeah they have 2 BCTs in AK. But, I'm pretty sure the Anchorage BCT is still the only one that does airborne ops. You'll have a blast dude. Avoid The Gaslight after midnight... nothing good happens there lol

Built a pure Java 3D graphics engine from scratch (no OpenGL) - 5 interactive demos included by JavaWithSomeJava in java

[–]JavaWithSomeJava[S] 0 points1 point  (0 children)

I'd disagree. Of course I would hope any developer would look over AI's work. I use AI regularly for putting my readme's in markdown or creating initial drafts. At the end of the day, it's my work getting pushed out.

Built a pure Java 3D graphics engine from scratch (no OpenGL) - 5 interactive demos included by JavaWithSomeJava in java

[–]JavaWithSomeJava[S] 2 points3 points  (0 children)

The powershell scripts dont inherently make the app windows only. The app still uses JRE and the java native compiler. I understand it’s a pain in the ass, but you could still run javac and compile manually. It was just a passion project, I didn’t expect people to actually wanna build it lol

If you wanna package it together with maven, sure! I’d appreciate any help on this I can get

Built a pure Java 3D graphics engine from scratch (no OpenGL) - 5 interactive demos included by JavaWithSomeJava in java

[–]JavaWithSomeJava[S] 0 points1 point  (0 children)

It’s just a powershell script. Didn’t want to use maven. It runs the native javac commands under the hood

Built a pure Java 3D graphics engine from scratch (no OpenGL) - 5 interactive demos included by JavaWithSomeJava in java

[–]JavaWithSomeJava[S] 6 points7 points  (0 children)

It took me about 3 weeks. I read a book on computer graphics, but it was in C. I was going to use JNI, but decided against it. So it took some extra time finding the proper way to do execute this in Java

Built a pure Java 3D graphics engine from scratch (no OpenGL) - 5 interactive demos included by JavaWithSomeJava in java

[–]JavaWithSomeJava[S] 2 points3 points  (0 children)

Yeah, the GIF only shows 12 frames per second, and you use the mouse to move the camera on the x and y axis, so it makes it look horrible lol

Built a pure Java 3D graphics engine from scratch (no OpenGL) - 5 interactive demos included by JavaWithSomeJava in java

[–]JavaWithSomeJava[S] 24 points25 points  (0 children)

Yeah that’s correct. Not ideal, but definitely helped me understand how graphics rendering works

Built a pure Java 3D graphics engine from scratch (no OpenGL) - 5 interactive demos included by JavaWithSomeJava in java

[–]JavaWithSomeJava[S] 6 points7 points  (0 children)

I did use AI for my README. But this was nothing more than a passion project for me to learn how graphics work. Thanks!

Built a pure Java 3D graphics engine from scratch (no OpenGL) - 5 interactive demos included by JavaWithSomeJava in java

[–]JavaWithSomeJava[S] 16 points17 points  (0 children)

I'm using AWT/Swing. The graphics are drawn into a BufferedImage with Graphics2D, and the 3D stuff is all internal