VisualPOVRAY.Frame.Frame C# (CSharp) Method

Frame() public method

public Frame ( Camera cam, String color = "Black", bool animated = false ) : System
cam Camera
color String
animated bool
return System
        public Frame(Camera cam, String color = "Black", bool animated = false)
        {
            this.frameCount = 0;
            this.color = color;
            this.world = new List<PovObj>();
            this.events = new List<Event>();
            this.world.Add(cam);
            this.animated = animated;
        }