Teddy van Jerry

Results 11 comments of Teddy van Jerry

Yeah, I am also looking forward to a cylinder shape since I am working on a dice simulation software. Maybe currently I have to resort to a tessellated mesh even...

@Dorbmon I have successfully used a `ConvexMeshShape` to approximate the cylinder shape though the speed is not satisfactory. Here is the main code: ```cpp // ====== Create a Cylinder ======...

您好,我现在正在做一个仿真软件([mmCEsim](https://github.com/mmcesim))可以自动导出并编译 LaTeX 报告,仅在软件安装包里给用户提供 minimal 的 packages。我想是不是可以直接利用您在 `tools` 里的代码配合上 GitHub Actions 直接进行 build 呢?不确定是不是修改 `tools/pkgs-custom.txt` 还是 `tools/pkgs-yihui.txt`,再调整对应的 `build.yml` 内容即可实现 :-)

哦哦明白啦,非常感谢!

Thank you for your reply. I previously used WordPress a lot and I am familiar to add a logo and the title at the same time. There is logo support...

Here is my proposal in `_config.yml`: ```yml title: Just the Docs description: A Jekyll theme for documentation baseurl: "/just-the-docs" # the subpath of your site, e.g. /blog url: "https://just-the-docs.github.io" #...

@pdmosses Thank you for your nice guidance! I will try to implement this feature recently with a PR.

我在 Mac 上也遇到类似的问题,因为系统安装是英文系统,所以没有 `Kaishu SC` 等字体。 ## 解决方案 下载 `cls` 文件,将所有与 `fontspec` 有关语句注释,即可避免报错,但是字体会使用默认字体替换,效果不一定最佳。 ```tex % \PassOptionsToPackage{no-math}{fontspec} % \PassOptionsToPackage{quiet}{fontspec} \RequirePackage{iftex} \ifXeTeX % \RequirePackage[no-math]{fontspec} % \setmainfont{texgyretermes}[ % UprightFont = *-regular , %...

@patrikpatrik Hi, it is quite a long time since I wrote this code. At that time, it was version `0.8.0`. I am not sure whether this method is broken for...

I am not quite sure where the problem lies since in my code snippet vertices of each face are defined clockwise so as to satisfy the requirement. About the mesh...