VisualPOVRAY.Light.AreaLight.AreaLight C# (CSharp) Method

AreaLight() public method

public AreaLight ( Point3 loc, Point3 color, Point3 vector1, Point3 vector2, int widthLight, int heightLight, float fadeDist, float fadePower, System.Boolean shadows, System.Boolean interaction, System.Boolean atmosphere ) : System
loc Point3
color Point3
vector1 Point3
vector2 Point3
widthLight int
heightLight int
fadeDist float
fadePower float
shadows System.Boolean
interaction System.Boolean
atmosphere System.Boolean
return System
            public AreaLight(Point3 loc, Point3 color, Point3 vector1, Point3 vector2, int widthLight, int heightLight, float fadeDist, float fadePower, Boolean shadows, Boolean interaction, Boolean atmosphere)
                : base(loc, color, fadeDist, fadePower, shadows, interaction, atmosphere, type: "area_light")
            {
                this.vector1 = vector1;
                this.vector2 = vector2;
                this.widthLight = widthLight;
                this.heightLight = heightLight;
            }
Light.AreaLight