Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to reduce flicking in animation?

Answer Posted / m!r@

Double Buffering

sample code of java to reduce flinking :

public void update(Graphics g) {
Graphics offgc;
Image offscreen = null;
Dimension d = size();
offscreen = createImage(d.width, d.height);
offgc = offscreen.getGraphics();
offgc.setColor(getBackground());
offgc.fillRect(0, 0, d.width, d.height);
offgc.setColor(getForeground());
paint(offgc);
g.drawImage(offscreen, 0, 0, this);

}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can a singleton class be inherited?

966


Can an object subclass another object?

1100


What is the difference between and ?

1010


Is null a string in java?

1067


What is the difference between iterator and enumeration ?

1003


Explain about interrupt() method of thread class ?

1120


What two classes are used to read data only?

1092


What is the difference between a factory and abstract factory pattern?

1141


How do you square a number in java?

1054


What is the internal implementation of set in java?

924


What is increment in java?

960


What is temp in java?

995


What are the types of relation?

1043


How do you sort arrays in java?

925


Explain when noclassdeffounderror will be raised ?

1044