answersLogoWhite

0


Best Answer

Lots of factors need to be taken into account:

* What angle does the bullet strike the object? * What is the mass of the object? If small it will move and absorb the energy. * What is the bullet made of? Does the deformation absorb the energy? * Is the object firmly fixed or movable? * How fast is the bullet moving?

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why does a bullet ricochet sometimes when you shoot on a metal object with a gun and not always?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can a bullet ricochet off frozen ground?

Yes, bullets can ricochet from striking frozen ground, from water or any hard object.


Why is a ricochet produced on firing a bullet?

A ricochet occurs when a bullet hits something it cannot penatrate.


What does ricochet mean?

ricochet means; that it is the rebound of something. often very loud....


What happens when an unstoppable force comes upon an unmovable object?

Ricochet. Force changes direction.


Does a small object always have less mass than a larger object?

not all the time but sometimes you can tell by the weight or sometimes you cant lift it to see how much mass is in it


Is a gun bullet a magnetic object?

Most are not.


What happens to the surface of a bullet when it penetrates different objects?

when it penetrates the object the bullet stays the same,


What is a bullet hit?

In filmmaking, a bullet hit could be described as the special effect that shows the visual result of a bullet hitting something: a human, an object or whatever.


What is bullet trajectory?

The trajectory of a bullet or any object is the Physics word for describing its path.Provided air resistance is ignored, the trajectory of a bullet will resemble a projectile motion path.


What is a bullet penatration kill on cod mw2?

A bullet penetration kill is when you kill someone thru a solid object, like a wall.


How do you find the perimeter of a bullet shaped object?

you get a calculator and learn the correct formula


How do you make an enemy object shoot in game maker 7?

this is the code I always use:bullet = instance_create(obj_enemyBullet);// create the bullet and store the ID in a variablewith(bullet){//start running code in the bulletparentID = other.id;//set the enemy ID that is the parent to the bullet as a variable in the bulletdirection = (parentID).bulletDirection;//set the direction to a variable stored in the enemyspeed = (parentID).bulletSpeed;//set the direction to a variable stored in the enemy//etc.}obj_enemyBullet is the object name of whatever the the enemy is shootingbulletDirection is a variable in the enemy that contains the direction the bullet should movebulletSpeed is a variable in the enemy that contains the speed the bullet should movejust copy/paste this code into the event that triggers the bullet firing and account for the mentioned variables. Credit Dr. Sakuya