登录
首页 » Java » DWGgateway

DWGgateway

于 2020-06-21 发布
0 170
下载积分: 1 下载次数: 2

代码说明:

说明:  低版本打开高版本CAD文件 不想装高版本的CAD可以使用(Low Version Opens High Version)

文件列表:

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • android open gl 示例代码下载
    [实例简介]Open GL 入门级示例 [实例截图] [核心代码]package com.china.gltry;import javax.microedition.khronos.egl.EGL10;import javax.microedition.khronos.egl.EGL11;import javax.microedition.khronos.egl.EGLConfig;import javax.microedition.khronos.egl.EGLContext;import javax.microedition.khronos.egl.EGLDisplay;import javax.microedition.khronos.egl.EGLSurface;import javax.microedition.khronos.opengles.GL;import android.view.SurfaceHolder;/** * An EGL helper class. */public class EGLHelper{ public EGLHelper() { } /** * Initialize EGL for a given configuration spec. * @param configSpec */ public void start(int[] configSpec){ /* * Get an EGL instance */ mEgl = (EGL10) EGLContext.getEGL(); /* * Get to the default display. */ mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); /* * We can now initialize EGL for that display */ int[] version = new int[2]; mEgl.eglInitialize(mEglDisplay, version); EGLConfig[] configs = new EGLConfig[1]; int[] num_config = new int[1]; mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, num_config); mEglConfig = configs[0]; /* * Create an OpenGL ES context. This must be done only once, an * OpenGL context is a somewhat heavy object. */ mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null); mEglSurface = null; } /* * Create and return an OpenGL surface */ public GL createSurface(SurfaceHolder holder) { /* * The window size has changed, so we need to create a new * surface. */ if (mEglSurface != null) { /* * Unbind and destroy the old EGL surface, if * there is one. */ mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); } /* * Create an EGL surface we can render into. */ mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, holder, null); /* * Before we can issue GL commands, we need to make sure * the context is current and bound to a surface. */ mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext); GL gl = mEglContext.getGL(); return gl; } /** * Display the current render surface. * @return false if the context has been lost. */ public boolean swap() { mEgl.eglSwapBuffers(mEglDisplay, mEglSurface); /* * Always check for EGL_CONTEXT_LOST, which means the context * and all associated data were lost (For instance because * the device went to sleep). We need to sleep until we * get a new surface. */ return mEgl.eglGetError() != EGL11.EGL_CONTEXT_LOST; } public void finish() { if (mEglSurface != null) { mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); mEglSurface = null; } if (mEglContext != null) { mEgl.eglDestroyContext(mEglDisplay, mEglContext); mEglContext = null; } if (mEglDisplay != null) { mEgl.eglTerminate(mEglDisplay); mEglDisplay = null; } } EGL10 mEgl; EGLDisplay mEglDisplay; EGLSurface mEglSurface; EGLConfig mEglConfig; EGLContext mEglContext;}
    2015-04-06下载
    积分:1
  • PDF的导出组件,扩展了对菱形及贝塞尔曲线的支持
    PDF的导出组件,扩展了对菱形及贝塞尔曲线的支持-PDF export components, extends the right diamond and the support of Bezier curves
    2022-08-12 14:02:10下载
    积分:1
  • 小波变换的java实现
    Java实现的离散傅立叶变换(DFT)算法,快速小波变换(FWT)算法,和小波包变换(WPT)算法,可在1-D,2-D,和3-D数组变换。小波变换算法使用标准正交(正交)小波,如Haar,CIFIFLE,Daubechies,Simple,勒让德等。jwave的实现基于几种设计模式,使用起来非常友好。
    2023-05-25 13:40:03下载
    积分:1
  • ToDoList1
    说明:  超好用日历,比较完美!!!!!!!!!!(calendar; kalendar compare; relatively; compare with; comparatively perfect; perfection; flawless; consummate; finish)
    2019-01-25 12:27:37下载
    积分:1
  • android 播放器
    android 播放器 ,支持MP3、MP2、WAV等多种文件格式,有Internet流功能
    2022-10-14 06:10:03下载
    积分:1
  • 一个简单的论坛源码
    JSP做的课程设计,没有使用框架,简单易学,适合JavaWeb新手。
    2022-03-16 00:56:56下载
    积分:1
  • 手机大众点评下拉菜单选择特效
    jQuery手机大众点评下拉菜单选择特效(JQuery Mobile Popular Comments on Dropdown Menu Selection Special Effects)
    2018-12-10 14:00:17下载
    积分:1
  • oracle_start_service
    oracle10g数据库的服务启动提示与关键函数的提示!(oracle10g database service startup tips tips and key function!)
    2010-03-12 10:23:56下载
    积分:1
  • 安卓医院挂号
    通过安卓开发的医院挂号简单功能 用eclipse开发  适合新手学习
    2022-07-02 19:29:21下载
    积分:1
  • Java
    Java program to solve qruadratic equation.
    2020-06-19 02:20:01下载
    积分:1
  • 696518资源总数
  • 105554会员总数
  • 2今日下载