变焦互动,文字的背景颜色,以及透明度的影响 : 曲线 « 高级图形 « 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.graphics.*;



/**
 * G demo program. Demonstrates:
 *
 * <ul>
 *   <li> Custom world extent
 *   <li> Zoom interaction
 *   <li> Text background color
 *   <li> The effect of transparency
 *   <li> Annotation layout algorithm
 * </ul>
 
 @author <a href="mailto:jacob.dreyer@geosoft.no">Jacob Dreyer</a>
 */   
public class Demo5 extends JFrame
{
  /**
   * Class for creating the demo canvas and hande Swing events.
   */   
  public Demo5()
  {
    super ("G Graphics Library - Demo 5");
    setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
    
    // Create the GUI
    JPanel topLevel = new JPanel();
    topLevel.setLayout (new BorderLayout());
    getContentPane().add (topLevel);        

    JPanel buttonPanel = new JPanel();
    buttonPanel.add (new JLabel ("Zoom with rubberband and mouse buttons"));
    topLevel.add (buttonPanel,   BorderLayout.NORTH);

    // Create the graphic canvas
    GWindow window = new GWindow (new Color (240230230));
    topLevel.add (window.getCanvas(), BorderLayout.CENTER);    
    
    // Create scene with default viewport and world extent settings
    GScene scene = new GScene (window, "Scene");
    scene.setWorldExtent (0.0, -Math.PI / 2.05.0 * Math.PI, 1.0 * Math.PI);

    // Create curve object
    GObject curve = new Curve();
    scene.add (curve);

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

    window.startInteraction (new ZoomInteraction (scene));
  }


  
  /**
   * Defines the geometry and presentation for the sample
   * graphics object.
   */   
  public class Curve extends GObject
  {
    private GSegment  curve_;

    
    public Curve()
    {
      curve_ = new GSegment();
      addSegment (curve_);

      GStyle curveStyle = new GStyle();
      curveStyle.setForegroundColor (new Color (25500));
      curveStyle.setLineWidth (12);      
      setStyle (curveStyle);

      GStyle textStyle = new GStyle();
      textStyle.setForegroundColor (new Color (255255255));
      textStyle.setBackgroundColor (new Color (0.0f0.0f0.0f0.3f));
      textStyle.setFont (new Font ("Dialog", Font.BOLD, 14));
      
      for (int i = 0; i < 10; i++) {
        GText text = new GText ("Text " + i, GPosition.LEFT | GPosition.EAST);
        text.setStyle (textStyle);
        curve_.addText (text);
      }
    }
    

    
    public void draw()
    {
      int nPoints = 500;

      double[] x = new double[nPoints];
      double[] y = new double[nPoints];      

      double step = Math.PI * 10.0 / nPoints;
      for (int i = 0; i < nPoints; i++) {
        x[i= i * step;
        y[i= Math.sin (x[i]);
      }

      curve_.setGeometry (x, y);
    }
  }
  


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

           
       
G-DrawCurve.zip( 204 k)
Related examples in the same category
1. 编辑样条编辑样条
2. 绘制样条绘制样条
3. 动画图动画图
4. 小量三角洲小量三角洲
5. Families Of GraphsFamilies Of Graphs
6. 积分曲线积分曲线
7. 微量元素曲线微量元素曲线
8. Input the function and draw the curveInput the function and draw the curve
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.