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 3879754
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T22:45:46+00:00 2026-05-19T22:45:46+00:00

First, let me show you the struct: struct HPOLY { HPOLY() : m_nWorldIndex(0xFFFFFFFF), m_nPolyIndex(0xFFFFFFFF)

  • 0

First, let me show you the struct:

struct HPOLY
{
   HPOLY() : m_nWorldIndex(0xFFFFFFFF), m_nPolyIndex(0xFFFFFFFF) {}
   HPOLY(__int32 nWorldIndex, __int32 nPolyIndex) : m_nWorldIndex(nWorldIndex), m_nPolyIndex(nPolyIndex) {}
   HPOLY(const HPOLY& hPoly) : m_nWorldIndex(hPoly.m_nWorldIndex), m_nPolyIndex(hPoly.m_nPolyIndex) {}

   HPOLY &operator=(const HPOLY &hOther)
   {
      m_nWorldIndex = hOther.m_nWorldIndex;
      m_nPolyIndex = hOther.m_nPolyIndex;
      return *this;
   }

   bool operator==(const HPOLY &hOther) const
   {
      return (m_nWorldIndex == hOther.m_nWorldIndex) && (m_nPolyIndex == hOther.m_nPolyIndex);
   }
   bool operator!=(const HPOLY &hOther) const
   {
      return (m_nWorldIndex != hOther.m_nWorldIndex) || (m_nPolyIndex != hOther.m_nPolyIndex);
   }
   __int32 m_nPolyIndex, m_nWorldIndex;
}; 

There are some things I don’t understand.

What does the repetition of HPOLY inside the struct mean? And how to transcript structs to delphi code?

Thank you for your help.

  • 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-19T22:45:47+00:00Added an answer on May 19, 2026 at 10:45 pm

    The repetition of HPOLY inside the struct are definitions of constructors for that type. In Delphi, the copy constructor (the third one in the C++, which constructs an instance of this type based on another instance of the same type) not necessary in Delphi. The two-argument constructor lets you specify initial values for the two fields. The default, zero-argument constructor sets the fields’ values to -1, but Delphi doesn’t allow such a constructor on records.

    The next section in that struct is the assignment operator. Delphi provides that for records automatically. Next are comparison operators that compare the type for equality and inequality. The compiler will invoke them when you use the = and <> operators on HPoly values.

    type
      HPoly = record
        m_nPolyIndex, m_nWorldIndex: Integer;
        constructor Create(nWorldIndex, nPolyIndex: Integer);
        class operator Equal(const a: HPoly; const b: HPoly): Boolean;
        class operator NotEqual(const a: HPoly; const b: HPoly): Boolean;
      end;
    
    constructor HPoly.Create(nWorldIndex, nPolyIndex: Integer);
    begin
      m_nPolyIndex := nPolyIndex;
      m_nWorldIndex := nWorldIndex;
    end;
    
    class operator HPoly.Equal(const a, b: HPoly): Boolean;
    begin
      Result := (a.m_nPolyIndex = b.m_nPolyIndex)
            and (a.m_nWorldIndex = b.m_nWorldIndex);
    end;
    
    class operator HPoly.NotEqual(const a, b: HPoly): Boolean;
    begin
      Result := (a.m_nPolyIndex <> b.m_nPolyIndex)
             or (a.m_nWorldIndex <> b.m_nWorldIndex);
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having difficulties implementing a custom ASP.NET RoleProvider. First off, let me show
First let me show some code. class User has_and_belongs_to_many :roles named_scope :employees, { :conditions
Let me first show you the xml structure: <config> <engine> <eid>1</eid> <somechild>text</somechild> <somemodechild> <subchild>subchbild</subchild>
Let me show the code first. WCF servicecontract function: public List<VenueData> GetVenues() { List<VenueData>
First let me say that I really feel directionless on this question. I am
First let me say I have read this useful article thoroughly and am using
First let me state that, despite being a fairly new practitioner of TDD, I'm
First let me explain how I currently handle validation, say, for an IPv4 address:
First let me tell you what I want to achieve. I want a layout
First let me say that I did see this article: How to remove AspxAutoDetectCookieSupport

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.