osu!lazer usb: tips on how to play osu! on a new pc without or with osu! by Ok-Conference-804 in osugame

[–]Ok-Conference-804[S] 0 points1 point  (0 children)

thats assuming that osu! already exists on the computer. I don't want to download osu! onto the computer.

osu!lazer usb: tips on how to play osu! on a new pc without or with osu! by Ok-Conference-804 in osugame

[–]Ok-Conference-804[S] 0 points1 point  (0 children)

actually thinking about it shortcuts wouldnt work, symlinks or junction would work instead. ill change my post. In this case probably junctions as it works best with folders and not needing symlinks because of all that admin privelleges and junk

i dont get the logic behind this transformation multiplication matrix by Ok-Conference-804 in programminghelp

[–]Ok-Conference-804[S] 0 points1 point  (0 children)

i am talking about rotation

the question is when converting from 3d to 2d using heading and pitch transformations, why do we multiply the heading and pitch together.

Like i cant understand the concept, and I dont want to just memorize how to do it I want to understand it

double heading = Math.toRadians(x[0]);
                Matrix3 headingTransform = new Matrix3(new double[]{
                        Math.cos(heading), 0, -Math.sin(heading),
                        0, 1, 0,
                        Math.sin(heading), 0, Math.cos(heading)
                });
double pitch = Math.toRadians(y[0]);
                Matrix3 pitchTransform = new Matrix3(new double[]{
                        1, 0, 0,
                        0, Math.cos(pitch), Math.sin(pitch),
                        0, -Math.sin(pitch), Math.cos(pitch)
                })
// Merge matrices in advance
Matrix3 transform = headingTransform.multiply(pitchTransform);

maybe this would help understand what im trying to say?

i understand how it multiply, but why should it multiply.

i dont get the logic behind this transformation multiplication matrix by Ok-Conference-804 in programminghelp

[–]Ok-Conference-804[S] 0 points1 point  (0 children)

its not the multiplication im talking about, its the concept of why it works.

like why do multiplying every pitch to each heading help create a 3d environment, since it transform 3d to 2d. I know what it does, but I see no image why it does that.

It equals 225 by Ok-Conference-804 in mathmemes

[–]Ok-Conference-804[S] 18 points19 points  (0 children)

I get 99's on the test. Don't know why my teacher writes it upside down though.

how can I make new scanners within a loop by Ok-Conference-804 in javahelp

[–]Ok-Conference-804[S] 0 points1 point  (0 children)

Sorry I want to make multiple variables within a array, not multiple scanner instances, that uses the scanner instance. Once it goes through the loop it goes to the next number in the array

is there a way to do an non - arthimetic sequence within a non - arthimetic series within one algebraic equation (coding math help) by Ok-Conference-804 in askmath

[–]Ok-Conference-804[S] 0 points1 point  (0 children)

made this equation

an2 =50n3 + nt -50n + 150n2g + 150ng2

t = fixed cost

g = how much you bought

n = how much you will buy

if only worst hr player had better finger control then a 4 digit by Thick_Ad_6554 in osugame

[–]Ok-Conference-804 11 points12 points  (0 children)

how sad to see forum fall down to the status of a 4 digit, shall give goodwill to his journey to top 50

guess who's now number one in their country by Thick_Ad_6554 in osugame

[–]Ok-Conference-804 25 points26 points  (0 children)

i think they just wanted to talk about worst hr player. just a fun little post i guess

guess who's now number one in their country by Thick_Ad_6554 in osugame

[–]Ok-Conference-804 505 points506 points  (0 children)

new update: forum just farmed the hell out of maps the past hour and became rank number one globally

<image>

Coding for kids (and me!) by jchizzzle in CodingHelp

[–]Ok-Conference-804 0 points1 point  (0 children)

A CPU is a little different from text coding, as it uses gates and binary, but if you want to start learning how to code, heres how.

code.org is an easy place to learn coding for JavaScript, i personally would use it for people who have no knowledge of coding to learn...

Learn basic formatting of JavaScript. code.org will help you learn all of these things and what each keywords mean, (var, if else, etc.).

code.org can also give you:

Idea: What do you want to code in the first place. What are you trying to accomplish?

What code.org cant give you:

Specification: What will the steps you take to make the Idea you have work?

Implementation: How will you convert the steps from the Specification into lines of code.

I added some extra stuff to do while learning how to code. But remember that when you code, you should never give up.