Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1049011
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:32:55+00:00 2026-05-16T16:32:55+00:00

I’m currently developing my own 3d engine, which has a very limited abilities in

  • 0

I’m currently developing my own 3d engine, which has a very limited abilities in terms of geometry rendering and I want to expand it. What I’m interested in is how-it-should be done in terms of storing the geometrical objects and drawing them.

For now my abstraction only supports rendering geometry as generic lists of triangles (D3DPT_TRIANGLELIST in Direct3D terms). There are couple other ways of representing the objects – such as triangle strips (D3DPT_TRIANGLESTRIP) or triangle fans (D3DPT_TRIANGLEFAN).

My question is – are they actually used when drawing geometry in modern 3D engines?

How can their usage benefit and do they somehow fit in the game creation pipeline?
(I mean, like, can artists develop their models so that they’re utilizing these strips/fans techniques?)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T16:32:56+00:00Added an answer on May 16, 2026 at 4:32 pm

    There are couple other ways of
    representing the objects – such as
    triangle strips (D3DPT_TRIANGLESTRIP)
    or triangle fans (D3DPT_TRIANGLEFAN).

    My question is – are they actually
    used when drawing geometry in modern
    3d engines?

    TriangleStrip are used frequently for terrain rendering or other type of meshes with conjuction of restart strip indices (0xFFFF or 0xFFFFFFFF) or degenerated strips. They offer the best ratio in terms of triangles per indices storage. And if you have good vertex cache optimized meshes, they will totally rule the world.

    TriangleFan are present in D3D9 but have been removed from D3D10 and D3D11. My advice, avoid using them. The reason they are no good anymore is because they do an awful job as far as attributes interpolation are concerned (such as texcoord or normals), because you can do very thin and elongated triangles with them.

    You can argue you can do that too with strips or triangle lists, yes of course, but actually the ability to do fans lead to not friendly (artefact wise) meshes. By removing it from D3D, content creation tools will probably output tesselation that avoid lenghty triangles that have acute angles.

    Long and thin triangles are also bad (performance wise) because it generates suboptimal quad fragments during rasterization process (see excellent Humus post on triangulation).

    Of course this advice apply if you are coding a high performance/ high quality rendering engine, if you are doing hobby code, you want maybe not care of this that much.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.