Draw Pyramid : Scrolling « 2D Graphics « C# / C Sharp

C# / C Sharp
1. 2D Graphics
2. Class Interface
3. Collections Data Structure
4. Components
5. Data Types
6. Database ADO.net
7. Design Patterns
8. Development Class
9. Event
10. File Stream
11. Generics
12. GUI Windows Form
13. Language Basics
14. LINQ
15. Network
16. Office
17. Reflection
18. Regular Expressions
19. Security
20. Services Event
21. Thread
22. Web Services
23. Windows
24. XML
25. XML LINQ
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / C Sharp » 2D Graphics » ScrollingScreenshots 
Draw Pyramid
Draw Pyramid

/*
Professional Windows GUI Programming Using C#
by Jay Glynn, Csaba Torok, Richard Conway, Wahid Choudhury, 
   Zach Greenvoss, Shripad Kulkarni, Neil Whitlow

Publisher: Peer Information
ISBN: 1861007663
*/
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

using System.Drawing.Drawing2D;

namespace Pyramid
{
    /// <summary>
    /// Summary description for Pyramid.
    /// </summary>
    public class Pyramid1 : System.Windows.Forms.Form
    {
        private System.Windows.Forms.Button button1;
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.Container components = null;

        int rot = 0;
        Point center = new Point(125100);
        public Pyramid1()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();
            
            this.Text = "Pyramid by Transfomation";
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        protected override void Disposebool disposing )
        {
            ifdisposing )
            {
                if (components != null
                {
                    components.Dispose();
                }
            }
            base.Disposedisposing );
        }

        #region Windows Form Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(88);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(4824);
            this.button1.TabIndex = 0;
            this.button1.Text = "Rotate";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // Pyramid
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(513);
            this.ClientSize = new System.Drawing.Size(292266);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                          this.button1});
            this.Name = "Pyramid";
            this.Text = "Pyramid";
            this.ResumeLayout(false);

        }
        #endregion

        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main() 
        {
            Application.Run(new Pyramid1());
        }
        protected override void OnPaint (System.Windows.Forms.PaintEventArgs e)
        {
            Graphics g = e.Graphics;    
            g.Clear(this.BackColor)
            
            Pyramid(g);
            //PyramidPathRotate(g);
            g.Dispose();
        }
        protected void Pyramid(Graphics g
        {  
            Pen p = new Pen(Color.Blue);
            int ten = 10;
            Rectangle rc = new Rectangle(5090150, ten);  // the base rectangle
            g.DrawRectangle(p, rc);
            for(int i = 1;i <= 7; i++
            {
                rc.Offset(0,-ten);
                rc.Inflate(-ten, 0);
                g.DrawRectangle(p, rc);
            }
            p.Dispose();
        }
        private void button1_Click(object sender, System.EventArgs e)
        {
//          rot++;  // rot is a class member
//          PyramidPathRotate(CreateGraphics());
//          Refresh();
        }
        protected void PyramidPathRotate(Graphics g
        {
            GraphicsPath gP = new GraphicsPath();  // create an empty path 
            Pen p = new Pen(Color.Blue);
            int ten = 10;
            Rectangle rc = new Rectangle(5090150, ten);  // the base rectangle
            gP.AddRectangle(rc);
            for(int i = 1;i <= 7; i++
            {
                rc.Offset(0,-ten);
                rc.Inflate(-ten,0);
                gP.AddRectangle(rc);
            }
            Matrix m = new Matrix();
            m.RotateAt(45*rot, center, MatrixOrder.Append);
            gP.Transform(m);
            g.DrawPath(p, gP);  // draw the rotated path
            g.FillEllipse(Brushes.Red, center.X, center.Y, 33);  // center point

            p.Dispose();
        }
    }
}


           
       
Related examples in the same category
1. Scrolling DemoScrolling Demo
w_w_w___.__j_a_v__a2__s.___co_m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.