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

Which list does not allow duplicates in java?

872


What method is used to specify a container's layout in java programming?

1042


What are some characteristics of interference class?

944


What is the purpose of javac exe?

1023


What is volatile keyword in java

1069


what are the methods in object?

1084


How does enum work in java?

960


What is the static method?

1018


What are the differences between string and stringbuffer?

1056


If try block is successfully executed, Then Is Finally block executed?

1036


What is the static block?

1001


Is it possible for yielded thread to get chance for its execution again ?

962


What are basic data types?

1032


What are anonymous inner classes?

961


What is variable explain?

955