辐射:注释布局机制,能见度设置,自定义linestyle : 几何 « 高级图形 « 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 » 高级图形 » 几何屏幕截图 
辐射:注释布局机制,能见度设置,自定义linestyle
辐射:注释布局机制,能见度设置,自定义linestyle

import java.awt.*;
import java.awt.event.*;

import javax.swing.*;

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



/**
 * G demo program. Demonstrates:
 *
 * <ul>
 * <li>Annotation layout mechanism
 * <li>Visibility settings
 * <li>Custom linestyle
 * </ul>
 
 @author <a href="mailto:jacob.dreyer@geosoft.no">Jacob Dreyer</a>
 */   
public class Demo3 extends JFrame
  implements ActionListener
{
  private JCheckBox  annotationToggle_;
  private JCheckBox  geometryToggle_;

  private GScene     scene_;
  
  

  /**
   * Class for creating the demo canvas and hande Swing events.
   */   
  public Demo3()
  {
    super ("G Graphics Library - Demo 3");
    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 ("Visibility"));
    
    geometryToggle_ = new JCheckBox ("Geometry");
    geometryToggle_.setSelected (true);
    buttonPanel.add (geometryToggle_);
    geometryToggle_.addActionListener (this);
    
    annotationToggle_ = new JCheckBox ("Annotation");    
    annotationToggle_.setSelected (true);
    buttonPanel.add (annotationToggle_);
    annotationToggle_.addActionListener (this);
    
    topLevel.add (buttonPanel, BorderLayout.NORTH);

    // Create the graphic canvas
    GWindow window = new GWindow (new Color (245250236));
    topLevel.add (window.getCanvas(), BorderLayout.CENTER);    
    
    // Create scene with default viewport and world extent settings
    scene_ = new GScene (window, "Scene");

    // Create som graphic objects
    GObject testObject = new TestObject (20);
    scene_.add (testObject);

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


  
  /**
   * Handle button interactions.
   
   @param event  Event causing call to this method.
   */
  public void actionPerformed (ActionEvent event)
  {
    Object source = event.getSource();

    boolean showGeometry   = geometryToggle_.isSelected();
    boolean showAnnotation = annotationToggle_.isSelected();

    if (showGeometry)   scene_.setVisibility (GObject.DATA_VISIBLE);
    else                scene_.setVisibility (GObject.DATA_INVISIBLE);
    
    if (showAnnotationscene_.setVisibility (GObject.ANNOTATION_VISIBLE);
    else                scene_.setVisibility (GObject.ANNOTATION_INVISIBLE);

    scene_.refresh();
  }


  
  /**
   * Defines the geometry and presentation for the sample
   * graphic object.
   */   
  private class TestObject extends GObject
  {
    private GSegment[]  lines_;

    
    TestObject (int nLines)
    {
      lines_ = new GSegment[nLines];

      GStyle textStyle = new GStyle();
      textStyle.setForegroundColor (new Color (000));
      textStyle.setFont (new Font ("Dialog", Font.BOLD, 14));      
      
      for (int i = 0; i < nLines; i++) {
        lines_[inew GSegment();
        GStyle lineStyle = new GStyle();
        lineStyle.setForegroundColor (new Color ((floati / nLines, 0.7f0.7f));
        lineStyle.setLineWidth (3);
        lineStyle.setAntialiased (true);
        lineStyle.setLineStyle (new float[] {10.0f5.0f2.0f5.0f});
        lines_[i].setStyle (lineStyle);
        addSegment (lines_[i]);
        
        GText text = new GText ("Line " (i+1), GPosition.BOTTOM | GPosition.CENTER);
        text.setStyle (textStyle);
        lines_[i].setText (text);
      }
    }

    
    public void draw()
    {
      // Center of viewport
      int x0     = (intMath.round (getScene().getViewport().getCenterX());
      int y0     = (intMath.round (getScene().getViewport().getCenterY());

      int width  = (intMath.round (getScene().getViewport().getWidth());
      int height = (intMath.round (getScene().getViewport().getHeight());

      int nLines = lines_.length;
      for (int i = 0; i < nLines; i++) {
        int x1 = x0;
        int y1 = 0;
        int x2 = (intMath.round ((doublewidth / nLines * i);
        int y2 = height;

        lines_[i].setGeometry (x1, y1, x2, y2);
      }
    }
  }
  


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

           
       
G-DrawRadiation.zip( 200 k)
Related examples in the same category
1. Update World Extent GeometryUpdate World Extent Geometry
2. 几何生成几何生成
3. 嵌入式AWT组件,自定义选择的互动,动态说明嵌入式AWT组件,自定义选择的互动,动态说明
4. Advanced geometry generation
5. Draw String and StarDraw String and Star
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.