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

  • SEARCH
  • Home
  • 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 6590955
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:21:51+00:00 2026-05-25T17:21:51+00:00

If I have three points and always want the visible face should be the

  • 0

If I have three points and always want the visible face should be the side that is “facing” from origo, is there a shortcut to calculate the normal of the plane ?

Like this

        mesh.Positions.Add(p0);
        mesh.Positions.Add(p1);
        mesh.Positions.Add(p2);

        mesh.TriangleIndices.Add(0);
        mesh.TriangleIndices.Add(1);
        mesh.TriangleIndices.Add(2);


        normal = Vector3D(1,1,1);

        mesh.Normals.Add(normal);
        mesh.Normals.Add(normal);
        mesh.Normals.Add(normal);

        model = new GeometryModel3D(mesh, material);

Or do I have to calculate the normal every time ?

If I have to calculate the normal, what is the algorithm for that, I have looked on the internet and tried a couple methods but they make me suspicious, like this one.

        normal = CalculateNormal(p0, p1, p2);

Where CalculateNormal is

    public static Vector3D CalculateNormal(Point3D p0, Point3D p1, Point3D p2)
    {
        Vector3D v0 = new Vector3D(p1.X - p0.X, p1.Y - p0.Y, p1.Z - p0.Z);
        Vector3D v1 = new Vector3D(p1.X - p2.X, p1.Y - p2.Y, p2.Z - p1.Z);

        return Vector3D.CrossProduct(v0, v1);
    }

should it not be

Vector3D v1 = new Vector3D(p1.X – p2.X, p1.Y – p2.Y, p1.Z – p2.Z);

instead ?

/Stefan

  • 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-25T17:21:52+00:00Added an answer on May 25, 2026 at 5:21 pm

    The following works well

        private Model3DGroup CreateTriangleSide(Point3D p0, Point3D p1, Point3D p2, Material material)
        {
            MeshGeometry3D mesh = null;
            GeometryModel3D model = null;
            Model3DGroup group = new Model3DGroup();
            Vector3D normal;
    
            //
            // Front side of jagged part
            //
            mesh = new MeshGeometry3D();
    
            mesh.Positions.Add(p0);
            mesh.Positions.Add(p1);
            mesh.Positions.Add(p2);
    
            mesh.TriangleIndices.Add(0);
            mesh.TriangleIndices.Add(1);
            mesh.TriangleIndices.Add(2);
    
            normal = CalculateNormal(p0, p1, p2);
            normal = Normalize(normal);
    
            mesh.Normals.Add(normal);
            mesh.Normals.Add(normal);
            mesh.Normals.Add(normal);
    
            model = new GeometryModel3D(mesh, material);
            group.Children.Add(model);
            //
            // Front side of the surface below the jagged edge
            //
            Point3D p3 = new Point3D(p1.X, p1.Y, bh);
            Point3D p4 = new Point3D(p2.X, p2.Y, bh);
    
            return group;
        }
    
    
    
        public const double RADDEGC = (Math.PI / 180.0);
    
        public enum ANGLETYPE { RAD, DEG };
    
        /*
         * Takes the angle and the Z value to create a 3D point in space
         * 
         * @param angle The angle 
         * @param radius The radius of the circle 
         * @param z The z value
         * @param t The angle type, for example RAD (radians) or DEG (degress
         * 
         */
        public static Point3D CP(double radius, double angle, double z = 0, ANGLETYPE angtype = ANGLETYPE.RAD)
        {
            Point3D p = new Point3D();
    
            p.Z = z;
            //
            if (angtype ==  ANGLETYPE.RAD)
            {
                p.X = radius * Math.Cos(angle);
                p.Y = radius * Math.Sin(angle);
            }
            else
            {
                p.X = radius * Math.Cos(angle * RADDEGC);
                p.Y = radius * Math.Sin(angle * RADDEGC);
            }
    
            return p;
        }
    
        public static Vector3D CalculateNormal(Point3D p0, Point3D p1, Point3D p2)
        {
            Vector3D a1 = new Vector3D(p1.X - p0.X, p1.Y - p0.Y, p1.Z - p0.Z);
            Vector3D b1 = new Vector3D(p2.X - p0.X, p2.Y - p0.Y, p2.Z - p0.Z);
    
            Vector3D dir = Vector3D.CrossProduct(a1, b1);
    
            return dir;
        }
    
    
        public static Vector3D Normalize(Vector3D norm)
        {
            double fac1 = Math.Sqrt((norm.X * norm.X) + (norm.Y * norm.Y) + (norm.Z * norm.Z));
    
            if (fac1 == 0)
            {
                return norm;
            }
            norm = new Vector3D(norm.X / fac1, norm.Y / fac1, norm.Z / fac1);
    
            return norm;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have some function that receives N random 2D points. Is there any
Have three divs in a container that I want to float over a large
Is there a way to format a double number that always have n digits
I have three points, for example: Start 194 171 Right 216 131 Left 216
I have the coordinates of three points on a plane. Let's call them X1,Y1,
I have a dataset consisting of a large collection of points in three dimensional
Basically I have two 2D points and there is a line between them. A
I want to set an background to my listview that have different size (depending
I have a MATLAB function that finds charateristic points in a sample. Unfortunatley it
I have a function that I want to execute several times for different DOM

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.