Click here to Skip to main content
15,894,907 members
Articles / Web Development / ASP.NET

An Open Source RDL Engine

Rate me:
Please Sign up or sign in to vote.
4.77/5 (12 votes)
20 Dec 2010CPOL3 min read 83.8K   3.5K   55  
An Open Source RDL engine for rendering reports to WinForms or ASP.NET
using System;
using System.Collections.Generic;
using System.Text;

namespace Rdl.Engine.Chart.RayTrace.Primitives
{
    public class Sphere : Primitive
    {
        private Point3 _centre;
	    private float _sqRadius, _radius, _rRadius;

        public Sphere( Point3 centre, float radius ) 
        { 
		    _centre = centre;
            _sqRadius = radius * radius;
		    _radius = radius;
            _rRadius = 1.0f / radius;
        }

	    public Point3 GetCentre() { return _centre; }
	    public float GetSqRadius() { return _sqRadius; }

        //public override Vector3 GetNormal(Point3 pos) { return new Vector3((pos - _centre) * _rRadius); }

        public override IntersectResult Intersect(Ray ray, out Ray intersect, out float dist)
        {
            IntersectResult ret = IntersectResult.MISS;
            dist = 0;
            intersect = null;
            Vector3 v = new Vector3(ray.Origin - _centre);
            float b = -v.Dot(ray.Direction);
	        float det = (b * b) - v.Dot(v) + _sqRadius;
	        if (det > 0)
	        {
		        det = (float)Math.Sqrt( det );
		        float i1 = b - det;
		        float i2 = b + det;
		        if (i2 > 0)
		        {
                    if (i1 < 0) 
			        {
				        dist = i2;
                        ret = IntersectResult.INPRIM;
			        }
			        else
			        {
				        dist = i1;
                        ret = IntersectResult.HIT;
			        }
                    Point3 pt = new Point3(ray.Origin + ray.Direction * dist);
                    intersect = new Ray(pt,
                        new Vector3((pt - _centre) * _rRadius));
                }
	        }
            return ret;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Sawiki Software
United States United States
I have been a professional software developer for 25+ years, most of it supporting the business community of Maine. I have been working with MS dotnet since 1.0 beta. I organized Sawiki Software LLC as an outlet for some open source software that I have been working on.

Comments and Discussions