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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T05:38:22+00:00 2026-06-10T05:38:22+00:00

I want to align an object position to grid. For instance, if my object

  • 0

I want to align an object position to grid.
For instance, if my object position is (102, 93) and
my grid size is 10 the aligned position (multiple) must be (100, 90).
My program does it a lot of times.

Currently i’m using this:

inline int Align(int value, int size)
{
    return (value - (value % size));
}

Then, i do this when the object position is changed:

this->m_x = Align(new_x, GRID_SIZE);
this->m_y = Align(new_y, GRID_SIZE);

My questions are:
Is this a good way to align a object to grid?

The % operator is fast (i use it a lot)?

If i use float intead of int what i can do to align the position?

  • 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-06-10T05:38:23+00:00Added an answer on June 10, 2026 at 5:38 am

    Another way of doing the same thing using integer math is like this:

    inline int Align(int value, int size)
    {
        return (value/size)*size;
    }
    

    If your size is a power of 2, you can use bitmasking (e.g. for size 16):

    inline int AlignTo16(int value)
    {
        return value & 0xfff0
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have about 12-15 images that I want to align together in a grid,
I want to align 3 objects horizontally in android layout, where the first object
I want align the div to center. like this I have tried margin-top, vertical-align
I want to align the buttons as shown bellow, for this, I used relative
I want to align my logo at the top but failed to do so
i want to align two textboxes with their display names ,side by side in
I want to align two buttons with a linear layout, one on the left,
I want to align some text to the top of a div. It seems
I want to align a Custom Button Field (the Star on the Screenshot) to
I want to align a list of links to be centered within a div.

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.