Link to home
Start Free TrialLog in
Avatar of ayha1999
ayha1999

asked on

Running c#

Hi,

How  can I run the following c# code in a web page and get the result? the input file is
http://orion.math.iastate.edu/burkardt/data/stl/bottle.stl

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace WebApplication1
{
    public class Algorithm
    {
        private Mesh _mesh { get; set; }

        public Algorithm(Mesh mesh)
        {
            _mesh = mesh;
        }

        private double SignedVolumeOfTriangle(Vector3 p1, Vector3 p2, Vector3 p3)
        {
            var v321 = p3.X * p2.Y * p1.Z;
            var v231 = p2.X * p3.Y * p1.Z;
            var v312 = p3.X * p1.Y * p2.Z;
            var v132 = p1.X * p3.Y * p2.Z;
            var v213 = p2.X * p1.Y * p3.Z;
            var v123 = p1.X * p2.Y * p3.Z;
            return (1.0 / 6.0) * (-v321 + v231 + v312 - v132 - v213 + v123);
        }

        public double VolumeOfMesh()
        {
            double volume = 0.0;

            Vector3[] vertices = _mesh.Vertices;
            int[] triangles = _mesh.Triangles;

            for (int i = 0; i < _mesh.Triangles.Length; i += 3)
            {
                Vector3 p1 = vertices[triangles[i + 0]];
                Vector3 p2 = vertices[triangles[i + 1]];
                Vector3 p3 = vertices[triangles[i + 2]];

                volume += SignedVolumeOfTriangle(p1, p2, p3);
            }

            return Math.Abs(volume);
        }
    }

    public class Mesh
    {
        public Mesh(Vector3[] _vertices, int[] _triangles)
        {
            Vertices = _vertices;
            Triangles = _triangles;
        }

        public Vector3[] Vertices { get; set; }

        public int[] Triangles { get; set; }
    }


    public class Vector3
    {
        public Vector3(double x, double y, double z)
        {
            X = x;
            Y = y;
            Z = z;
        }

        public double X { get; set; }
        public double Y { get; set; }

        public double Z { get; set; }
    }
}

Open in new window


thanks

ayha
SOLUTION
Avatar of Meir Rivkin
Meir Rivkin
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Then on your UI page you can call the functions in your class library to test it and step through the code if required.
Avatar of ayha1999
ayha1999

ASKER

How can I call the function in a page load event?
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This code is for calculating volume of stl files. where can I provide the stl file in the code?