资源简介
提供了在.Net环境下进行图形编程的几种绘图方式,并测试了各种绘图方式的运行效率,为编程人员提供直观的测试结果,为程序员选择合适的绘图方式提供参考。
代码片段和文件信息
using System;
using System.Windows;
namespace DrawingTest {
///
/// Defines the DrawingTest application.
public partial class App: Application {
///
/// The width of the client area of all test windows in device-independent units.
///
public const int ClientWidth = 400;
///
/// The height of the client area of all test windows in device-independent units.
///
public const int ClientHeight = 400;
///
/// The number of available colors for pens and brushes.
public const int ColorCount = 6;
///
/// The number of objects drawn per test.
public const int Iterations = 10000;
///
/// Indicates whether anti-aliasing is enabled for all subsequently run tests.
public static bool AntiAliased = true;
///
/// The current for all subsequently run tests.
public static TestMode Mode = TestMode.PensOnly;
///
/// Gets the vertex coordinates for the specified angle.
///
/// The central angle of the vertex in degrees.
///
/// Returns the x-coordinate of the vertex at .
///
/// Returns the y-coordinate of the vertex at .
public static void GetVertex(int degrees out double x out double y) {
double width = ClientWidth / 2;
double height = ClientHeight / 2;
double radians = degrees * Math.PI / 180;
x = Math.Cos(radians) * width + width;
y = Math.Sin(radians) * height + height;
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-07-27 19:19 bin\
文件 25600 2011-07-27 19:19 bin\DrawingTest.exe
目录 0 2011-07-27 19:19 DrawingTest\
文件 1109 2011-06-08 19:29 DrawingTest.sln
文件 1581 2011-06-09 14:39 DrawingTest\app.manifest
文件 1792 2011-06-08 14:26 DrawingTest\App.xaml
文件 2018 2011-07-27 16:29 DrawingTest\App.xaml.cs
文件 836 2011-07-27 19:06 DrawingTest\AssemblyInfo.cs
文件 4798 2011-06-12 19:03 DrawingTest\DrawingTest.csproj
文件 1902 2011-07-27 16:29 DrawingTest\GdiBufferTest.cs
文件 1150 2011-06-12 18:53 DrawingTest\GdiBufferTest.Designer.cs
文件 1463 2011-07-27 16:30 DrawingTest\GdiDirectTest.cs
文件 1150 2011-06-12 18:52 DrawingTest\GdiDirectTest.Designer.cs
文件 2855 2011-06-12 19:03 DrawingTest\Gdiob
文件 3867 2011-07-27 16:29 DrawingTest\MainWindow.xaml
文件 6370 2011-07-27 16:29 DrawingTest\MainWindow.xaml.cs
文件 543 2011-06-08 14:20 DrawingTest\TestMode.cs
文件 340 2011-06-08 14:20 DrawingTest\WpfLineTest.xaml
文件 1415 2011-07-27 16:30 DrawingTest\WpfLineTest.xaml.cs
文件 3359 2011-06-12 19:03 DrawingTest\Wpfob
文件 340 2011-06-08 14:20 DrawingTest\WpfPathTest.xaml
文件 1815 2011-07-27 16:30 DrawingTest\WpfPathTest.xaml.cs
文件 346 2011-06-08 14:20 DrawingTest\WpfStreamTest.xaml
文件 1704 2011-07-27 16:30 DrawingTest\WpfStreamTest.xaml.cs
目录 0 2011-07-27 19:16 Java\
文件 383 2011-07-27 19:16 Java\DrawingTest$1.class
文件 3695 2011-07-27 19:16 Java\DrawingTest.class
文件 3779 2011-07-27 16:31 Java\DrawingTest.java
文件 673 2011-07-27 19:15 Java\ReadMe.txt
文件 592 2011-07-27 19:17 Java\RunJava.bat
文件 737 2011-07-27 19:16 Java\TestMode.class
............此处省略1个文件信息
相关资源
- Isight集成UG和Ansys(包含ugupdata元代表
-
xm
l增删改查 不用数据库,直接用 - Qt绘图实现
- SDK 面向对象交互式绘图
- newtonsoft.json源码
- O2S.Components.PDFRender4NET.dll 4.5.1无水印
- Qt自定义继承QOpenGLWidget的类进行绘图
- 航空管理系统
- 从数据库中加载树和动态添加树的节
- 计算机机房管理系统
- ILDASM
- 基于WEB的客运售票系统
- redupload多文件上传控件 dll
- .net卸载工具(dotnetfx_cleanup_tool) 绿色
- 采集软件 .net 采集插件
- 平面三角剖分算法
- AutoCAD .NET API进行AutoCAD二次开发基础代
- ewebeditor .net支持ie6、7、8、9 并能本地
- ZedGraph .net4.0版本
- 有意思的应用程序《用名字打架》
- System.Net.Http.dll
- .net财务管理系统完整源码值得
- SolarWinds.Orion.NetFlow.Traffic.Analyzer.v3.0
- 2016传智播客.NET第24期就业班视频地址
- .net 2.0 wsdl.exe
- 解决AUTOCAD 2019 net wizard 安装时提示未
- Visual Studio .NET 2003 简体中文完整版
- 亿图图示 9.0.zip免安装 免费
- 传智播客Ado.Net项目开发视频教程(第
- Ascgen2-2.0.0汉化版(图像ASCII生成器.
评论
共有 条评论