• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Draw Triangle

 
Ranch Hand
Posts: 184
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
The function fillTriangle(int x1, int y1, int x2, int y2, int x3, int y3) is not available in MIDP 1.0.
Could you advice me a way to implement a equivalent function in MIDP.
Thank you in advance.
OULD NADIF
 
wrangler
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
You can use method drawLine to draw three lines {x1, y1} to {x2, y2},
{x2, y2} to {x3, y3}, and {x3, y3} to {x1, y1}.
jim
 
Ould Nadif
Ranch Hand
Posts: 184
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks James for your reply.
It's not a triangle I wanted draw, but a triangle full.
I could've tanks to drawLine:
Example:

for (int i = 0 ; i < SizeBaseTriangle ; i++) {
iX1--;
iY1--;
iX2++;
iY2--;
gc.drawLine(iX1,iY1,iX2, iY2);
}
It works very well.
OULD NADIF
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic