会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
酷熊
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
22
23
24
25
26
27
28
29
30
···
40
下一页
2015年1月23日
osgconv 将多个模型合成一个模型
摘要: osgconv a.osg b.osg c.osg BigOne.ive以上命令的作用是将a.osg、b.osg、c.osg三个模型合并到BigOne.ive模型
阅读全文
posted @ 2015-01-23 10:19 酷熊
阅读(1257)
评论(0)
推荐(0)
编辑
将txt多行文本合并成一行
摘要: 1、用word打开txt文本2、打开“替换”功能,查找内容“^p”,替换内容为“,”(均无双引号)。即可把多列文字合并为一行。
阅读全文
posted @ 2015-01-23 10:02 酷熊
阅读(7344)
评论(0)
推荐(0)
编辑
2015年1月22日
osgconv 批量转换
摘要: @echo offfor /f "delims=" %%i in ('dir/b *.osg') do ( "osgconv.exe" "%%~ni.osg" "%%~ni.ive" )pause
阅读全文
posted @ 2015-01-22 16:42 酷熊
阅读(686)
评论(0)
推荐(0)
编辑
2014年12月30日
Does the OpenSceneGraph have a native file format?
摘要: FromOpenSceneGraph-3.0 onwards we have new native file formats based on generic serializers that are extensible and support forward/backward compatibi...
阅读全文
posted @ 2014-12-30 10:45 酷熊
阅读(405)
评论(0)
推荐(0)
编辑
2014年12月10日
C#封装C++DLL(特别是char*对应的string)
摘要: 1、新建一个C#-Windows-类库(用于创建C#类库(.dll)的项目)类型的工程 2、对于普通C++函数 XXXX_API void cppFun(int i); 在cs代码中添加 [DllImport("c++xxxx.dll")] public static extern void cpp
阅读全文
posted @ 2014-12-10 14:36 酷熊
阅读(1410)
评论(0)
推荐(0)
编辑
C#文件夹和文件操作
摘要: File.Exist(string path)//文件读写FileStream fs=new FileStream(filename, FileMode.Create);BinaryWriter bw=new BinaryWriter(fs);bw.Write("OK");bw.Flush();...
阅读全文
posted @ 2014-12-10 14:25 酷熊
阅读(206)
评论(0)
推荐(0)
编辑
VS工程目标文件名设置
摘要: 默认的输出文件名是$(ProjectName)可以在项目属性-配置属性-常规-目标文件名中设置例如我想在Debug版本的输出文件加一个后缀d,那么我可以这样设置:$(ProjectName)d
阅读全文
posted @ 2014-12-10 09:50 酷熊
阅读(1088)
评论(0)
推荐(0)
编辑
2014年12月9日
double最大最小值宏定义
摘要: DBL_MAXDBL_MIN
阅读全文
posted @ 2014-12-09 13:50 酷熊
阅读(1099)
评论(0)
推荐(0)
编辑
2014年12月6日
Excel统计工作簿sheet个数
摘要: 按Alt+F11调出VBE后,在"视图"-“立即窗口”中输入:debug.print ThisWorkbook.Sheets.Count回车后就可看到工作表数量。
阅读全文
posted @ 2014-12-06 21:21 酷熊
阅读(1113)
评论(0)
推荐(0)
编辑
Excel去重
摘要: 在excel2007中,数据——>数据工具——>删除重复项也可使用高级筛选:数据——>排序和筛选中的高级——>弹出高级筛选对话框,设置列表区域和条件区域,并勾选“选择不重复记录”——>确定
阅读全文
posted @ 2014-12-06 21:20 酷熊
阅读(272)
评论(0)
推荐(0)
编辑
上一页
1
···
22
23
24
25
26
27
28
29
30
···
40
下一页
公告