Re: Gravity Waves Community Center Geeks' Lounge by MidiMagic … caused or propagated by gravity waves. Gravity waves are disturbances in the gravitational pull experienced at … , which are caused by the motions of large masses. Gravity is completely explained by the effects of relativity and the… motion of space through the time dimension. Gravity is the drag induced when motion through time tries to… Re: Gravity Waves Community Center Geeks' Lounge by Rashakil Fol "gravity" isn't a wave -- in the same sense, electric fields are not waves. It's variations in gravitational fields that propagate. For example, the variations in gravitational fields created by a binary star system, or by the Sun-Earth system. Re: Gravity Waves Community Center Geeks' Lounge by sk8ndestroy14 Gravity waves still exist, just as electromagnetic waves exist. The thing is that we don't know a whole lot about it. Just like we don't know a whole lot about electromagnetic waves: why they act as waves and particles, but we still call them waves because of their characteristics. Re: gravity in dark gdk Programming Software Development by nbaztec … as a (physics)vector. In a 2-D scenario the Gravity vector will have 2 components. X & Y. [CODE… float x; float y; }; LineVector Gravity; Gravity.x = +0.0f; //Since gravity acts only in vertical direction Gravity.y = -9.8f;[/CODE] Going by…simpler terms: [CODE] ball.x += ball.velocity.x*dt + (GRAVITY.x*dt*dt)/2 ball.y += ball.velocity.y*dt… Gravity Waves Community Center Geeks' Lounge by sk8ndestroy14 … know that in addition to sound waves and light waves, gravity is also a wave itself. It's just a very… more dense than objects such as Earth. But Earth has gravity too and also has an effect on light. That's… about. Also the force of electricity and the force of gravity equations are so similar but there still hasn't been… Re: Gravity Waves Community Center Geeks' Lounge by Rashakil Fol [QUOTE=sk8ndestroy14;381780]Gravity waves still exist, just as electromagnetic waves exist.[/QUOTE] Did I come across as if they didn't? :-/ We _do_ know a whole lot about electromagnetic waves, but I'm sure curiosity can never be satisfied :) Re: Gravity Waves Community Center Geeks' Lounge by sk8ndestroy14 Did they teack you anything about gravity waves, or blackholes, or theoretical physics yet? If you know anything post it here. Re: gravity in dark gdk Programming Software Development by mrnutty What exactly do you mean? If you have an object moving, and you want gravity to account for its movement, then you can just do this : [code] const float GRAVITY = -9.8; ball.x += ball.velocity.x * dt; ball.y += ball.velocity.y + GRAVITY * dt; [/code] Those follow from basic Newtonian equation. gravity, acceleration Programming Software Development by nuclear …'m using frame independent movement, everything works fine with no gravity or acceleration: [CODE]boxOffsetY += yVel * ( DELTA.get_ticks() / 1000.f );[/CODE… frame rate i use. But when i try to add gravity: [CODE]yVel += dropSpeed * ( DELTA.get_ticks() / 1000.f );[/CODE] I add… Re: gravity, acceleration Programming Software Development by nuclear It actually works almost the way i want it to, but lets say when i make the Player jump and the gravity-acceleration kicks in, on higher frame rate the Player jums higher, on lower frame rate it jumps lower. P.S by gravity i mean that it accelerates, it doesnt stay the same until the Player reaches the ground. Re: gravity, acceleration Programming Software Development by nuclear … that I dont understand is how should I accelerate gravity so it would increase accordingly no matter what framerate … { accelerating = false; } break; } } }[/CODE] [CODE]void Player::logic() { //Adding gravity yVel += dropSpeed * ( DELTA.get_ticks() / 1000.f ); tile_logic(); //Restarting Delta DELTA… Re: gravity, acceleration Programming Software Development by Dman01 Maybe you should tell us, what's not working. What's happening when you use gravity-acceleration ? Just nothing, or does it disappear? Re: gravity, acceleration Programming Software Development by mike_2000_17 … is travelling at constant acceleration [I]a[/I] (e.g. gravity), then, at time [I]i[/I], the object will have… gravity like features in vb6? Programming Software Development by umers56 … if mario jumps he goes right back down...sorta like gravity. i wannt to incorport this into my game. also if… Re: gravity like features in vb6? Programming Software Development by vb5prgrmr There are several mario like clones out there, search on those (vb6 mario game) returned some interesting results from my friend yahoo as did vb6 calculating gravity in game and vb6 collision detection... Good Luck gravity in dark gdk Programming Software Development by uhmyeah i am pretty new to c++ and dark gdk. im trying to make a simple platform game to start off. i have the basic controls down, the animations, and collision. but i am having much trouble finding how to create the effects of gravity. please help. Re: gravity in dark gdk Programming Software Development by nbaztec Parabolic trajectory is nothing but a velocity vector under the influence of non-perpendicular deceleration(gravity). Gravity Form Entries Programming Web Development by Stephano How to pass gravity form entries to other multiple forms. i have a registration form that users enter their details. now i have 2 other forms that have some similar fields to the registration form. now i want those similar fields in these 2 other forms to be auto filled with the entries given at registration. gravity form auto populate drop down Programming Web Development by Stephano Iam using gravity forms. I have a registration form that people fill in,the form has both entry fields and drop down fields. i want to capture the entries that they enter in the drop down fields because there is another form that has similar fields, and would not want them to enter the values again. Re: gravity and collision problems Programming Software Development by Schol-R-LEA … 'walking through walls' issue first, as the solution to the gravity issue will depend on being able to detect the floor… Ratio in gravity force formula Programming Software Development by HarryGabriel91 … the planet and the sun (and the velocity and the gravity force vectors). The sun is still, it doesn't move… I changed the sample OpenGL program of Dev-C++. The gravity force formula by Newton is as follows: F = f*m… the nature (e24 and e30) and f (e-11), the gravity force is so big that the planet moves abnormally. My… plz help with gravity in java applet Programming Software Development by hwoarang69 … == true) //if user hit jump button { velocity_Y -= gravity; y += velocity_Y; //set y } else if(jump ==…if user let go of jump button { velocity_Y += gravity; //dont think i need this y += velocity_Y; … Harry Vested Gravity Collection...recently join in the community Community Center Say Hello! by mopatz Hi i'm Harry Vested Gravity Collection I found this forum recently and decided to join. Hoping to make some good connections and take part in the knowledge within these forums & want to participate in the group discussions with you all.I hope you will allow me & help me for it. Best Regards Harry Vested Gravity Collection Re: plz help with gravity in java applet Programming Software Development by JamesCherrill Somewhere you should have a method that executes at regular intervals (eg 30 per second) to update the position according to the velocity. (A javax.swing.Timer is the best way to do that.) That's where you need to have your velocity_Y -= gravity; y += velocity_Y; //set y Re: plz help with gravity in java applet Programming Software Development by ObSys … equation in order to apply the downward acceleration due to gravity. I'd recommend starting with a website like [this](http… Re: falling of a bmp under gravity - glut Programming Game Development by poliet …=itsPosition.X, this->itsPosition.Y-gravitydeviation,0); [/code] Thirdly, gravity was originally initialized to zero but your Event Manager starts… to start. In order to move the character due to gravity is simple, and just a square function. Hope that helps… falling of a bmp under gravity - glut Programming Game Development by dark_lord … with a rectangle shape it falls back to ground under gravity.. i didn't get any helpful resource yet.. could anybody… Google Apps, move over for Gravity Zoo Hardware and Software Microsoft Windows by John A … technology that's been in development for 3 years already, Gravity Zoo Framework, a special programming library aimed at online functionality… Re: Gravity Waves Community Center Geeks' Lounge by joshSCH damn dude.. have you actually learned about this kind of stuff in school? I never have.. so I have to do research about these topics online, and I am always surprised, amazed, and confused at my findings lol.. But yea, I don't know much about this other from the relativistic standpoint.. and I'm going to be an engineer major next year.. pff lol Re: Gravity Waves Community Center Geeks' Lounge by sk8ndestroy14 Yeah, well the seniors at my school get our a few days early and since my Physics Honors class is primarily meant for seniors the juniors in that class take the finals with them and then the last few days its just us and we talk about stuff like theoretical physics. If you find anything with your research post it here.