绘制样条 : 曲线 « 高级图形 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 高级图形 » 曲线屏幕截图 
绘制样条
绘制样条

import java.awt.*;

import javax.swing.*;

import no.geosoft.cc.geometry.Geometry;
import no.geosoft.cc.geometry.Matrix4x4;
import no.geosoft.cc.geometry.spline.SplineFactory;
import no.geosoft.cc.graphics.*;



/**
 * G demo program. Demonstrates:
 *
 * <ul>
 * <li> A rudimentary sheet music library
 * <li> GObject extension
 * <li> Advanced geometry generation
 * </ul>
 
 @author <a href="mailto:jacob.dreyer@geosoft.no">Jacob Dreyer</a>
 */   
public class Demo21 extends JFrame
{
  public Demo21()
  {
    super ("G Graphics Library - Demo 21");    
    setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
    
    // Create the graphic canvas
    GWindow window = new GWindow (new Color (255255255));
    getContentPane().add (window.getCanvas());
    
    // Create scene with default viewport and world extent settings
    GScene scene = new GScene (window);

    // Create a stave
    GStave stave1 = new GStave (25);
    stave1.setLocation (3050440);

    GNote note;
    note = new GNote ("f"1.010);
    stave1.addNote (note);
    
    note = new GNote ("g"0.510);
    stave1.addNote (note);

    note = new GNote ("d"0.510);        
    stave1.addNote (note);    
    
    note = new GNote ("a"1.010);        
    stave1.addNote (note);    

    note = new GNote ("a"1.010);        
    stave1.addNote (note);    

    
    // Another stave
    GStave stave2 = new GStave (25);
    stave2.setLocation (30250440);

    note = new GNote ("a"1.010);
    stave2.addNote (note);
    
    note = new GNote ("a"1.010);
    stave2.addNote (note);

    note = new GNote ("h"0.510);        
    stave2.addNote (note);    
    
    note = new GNote ("e"1.010);        
    stave2.addNote (note);    

    note = new GNote ("g"0.510);        
    stave2.addNote (note);    

    scene.add (stave1);
    scene.add (stave2);    

    pack();
    setSize (new Dimension (500500));
    setVisible (true);
  }

  

  private class GStave extends GObject
  {
    private int         x_, y_;
    private int         length_;
    private int         lineGap_;
    private GSegment[]  lines_;
    private GSegment    startLine_;
    private GSegment    endLine_;
    private GSegment    endBar_;
    private int         current_;
    

    public GStave (int lineGap)
    {
      lineGap_ = lineGap;
      
      GStyle style = new GStyle();
      style.setBackgroundColor (new Color (000));
      style.setForegroundColor (new Color (000));
      style.setLineWidth ((intMath.max ((intlineGap / 20.01));
      setStyle (style);

      lines_ = new GSegment[5];
      for (int i = 0; i < 5; i++) {
        lines_[inew GSegment();
        addSegment (lines_[i]);
      }

      startLine_ = new GSegment();
      addSegment (startLine_);
      
      endLine_ = new GSegment();
      addSegment (endLine_);

      endBar_ = new GSegment();
      addSegment (endBar_);
    }
    

    public void setLocation (int x, int y, int length)
    {
      x_ = x;
      y_ = y;
      length_ = length;
      current_ = x_ + * lineGap_;
    }


    public void addNote (GNote note)
    {
      String value = note.getValue();

      int y0 = 0;
      if      (value.equals ("c")) y0 = 10;
      else if (value.equals ("d")) y0 =  9;
      else if (value.equals ("e")) y0 =  8;
      else if (value.equals ("f")) y0 =  7;
      else if (value.equals ("g")) y0 =  6;
      else if (value.equals ("a")) y0 =  5;
      else if (value.equals ("h")) y0 =  4;                              
      
      note.setLocation (current_, y_ + (intMath.round (y0 * lineGap_ * 0.5));
      add (note);

      current_ += lineGap_ * 3;
    }
    

    public void draw()
    {
      for (int i = 0; i < 5; i++) {
        lines_[i].setGeometry (x_, y_ + i * lineGap_,
                               x_ + length_, y_ + i * lineGap_);
      }

      startLine_.setGeometry (x_, y_, x_, y_ + * lineGap_);
      
      endBar_.setGeometry (new int[] {x_ + length_,                          y_,
                                      x_ + length_ - (int) (lineGap_ * 0.5), y_,
                                      x_ + length_ - (int) (lineGap_ * 0.5), y_ + * lineGap_,
                                      x_ + length_,                          y_ + * lineGap_,
                                      x_ + length_,                          y_});

      endLine_.setGeometry (x_ + length_ - (int) (lineGap_ * 0.9), y_,
                            x_ + length_ - (int) (lineGap_ * 0.9),y_ + * lineGap_);
    }
  }
  
  

  private class GNote extends GObject
  {
    private String     value_;
    private double     duration_;
    private GSegment   head_;
    private GSegment   stem_;
    private GSegment   flag_;
    private int        x_, y_;
    private int        headSize_;
    private int        stemLength_;
    private Matrix4x4  headRotation_;
    
    
    
    public GNote (String value, double duration, int size)
    {
      value_    = value;
      duration_ = duration;
      headSize_ = size;
      
      GStyle style = new GStyle();
      style.setBackgroundColor (new Color (000));
      style.setForegroundColor (new Color (000));      
      setStyle (style);
      
      head_ = new GSegment();
      addSegment (head_);

      stem_ = new GSegment();
      addSegment (stem_);

      flag_ = new GSegment();
      addSegment (flag_);
    }


    public String getValue()
    {
      return value_;
    }
    
    
    public double getDuration()
    {
      return duration_;
    }
    

    
    public void setLocation (int x, int y)
    {
      x_ = x;
      y_ = y;
    }
    

    
    public void draw()
    {
      //
      // Head
      //
      int[] head = Geometry.createEllipse (00,
                                           headSize_,
                                           (int) ((doubleheadSize_ * 1.5));

      Matrix4x4 m = new Matrix4x4();
      m.rotateZ (Math.PI / 3.0);
      m.translate (x_, y_, 0.0);
      m.transformXyPoints (head);

      head_.setGeometry (head);

      //
      // Stem
      //
      int stemWidth = (intMath.round ((doubleheadSize_ / 5.0);
      if (stemWidth < 1stemWidth = 1;

      int stemLength = headSize_ * 8;
      int stemX0 = x_ + (int) ((doubleheadSize_ * 1.40);
      int stemY0 = y_ - (int) (headSize_ * 0.2);
      
      int[] stem = new int[] {stemX0,             stemY0,
                              stemX0 - stemWidth, stemY0,
                              stemX0 - stemWidth, stemY0 - stemLength,
                              stemX0,             stemY0 - stemLength,
                              stemX0,             stemY0};
      
      stem_.setGeometry (stem);

      //
      // Flag
      //
      if (duration_ < 1.0) {
        int flagX0 = stemX0;
        int flagY0 = stemY0 - stemLength;

        double[] cp = new double[]
                      {flagX0, flagY0, 0.0,
                       flagX0 + (int) (headSize_ * 0.5), flagY0 + (int) (stemLength * 0.2)0.0,
                       flagX0 + (int) (headSize_ * 2.0), flagY0 + (int) (stemLength * 0.5)0.0,
                       flagX0 + (int) (headSize_ * 1.8), flagY0 + (int) (stemLength * 0.9)0.0};
        double[] spline1 = SplineFactory.createCatmullRom (cp, 20);
        
        cp = new double[]
             {flagX0 + (int) (headSize_ * 1.8), flagY0 + (int) (stemLength * 0.9)0.0,
              flagX0 + (int) (headSize_ * 1.7), flagY0 + (int) (stemLength * 0.7)0.0,
              flagX0 + (int) (headSize_ * 0.5), flagY0 + (int) (stemLength * 0.45)0.0,                       
              flagX0,                           flagY0 + (int) (stemLength * 0.35)0.0};
        double[] spline2 = SplineFactory.createCatmullRom (cp, 20);
        
        int[] flag = new int[(spline1.length + spline2.length2];
        
        int j = 0;
        for (int i = 0; i < spline1.length; i+=3) {
          flag[j++(intMath.round (spline1[i+0]);
          flag[j++(intMath.round (spline1[i+1]);
        }
        for (int i = 0; i < spline2.length; i+=3) {
          flag[j++(intMath.round (spline2[i+0]);
          flag[j++(intMath.round (spline2[i+1]);
        }
        
        flag_.setGeometry (flag);
      }
    }
  }

    


  public static void main (String[] args)
  {
    new Demo21();
  }
}

           
       
G-DrawSpline.zip( 249 k)
Related examples in the same category
1. 编辑样条编辑样条
2. 动画图动画图
3. 小量三角洲小量三角洲
4. Families Of GraphsFamilies Of Graphs
5. 积分曲线积分曲线
6. 微量元素曲线微量元素曲线
7. Input the function and draw the curveInput the function and draw the curve
8. 散点图散点图
9. 变焦互动,文字的背景颜色,以及透明度的影响变焦互动,文字的背景颜色,以及透明度的影响
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.