This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//====================================================================== | |
// select-rectangle.cpp | |
// | |
// This program should demonstrate how to select multiple objects | |
// by drawing a rectangle with the mouse. | |
// | |
// This snippet is licensed under the MIT license. | |
// | |
// Dov Grobgeld <[email protected]> | |
// 2024-10-11 Fri |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//====================================================================== | |
// select-rectangle.cpp | |
// | |
// This program should demonstrate how to select multiple objects | |
// by drawing a rectangle with the mouse. | |
// | |
// This snippet is licensed under the MIT license. | |
// | |
// Dov Grobgeld <[email protected]> | |
// 2024-10-11 Fri |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//====================================================================== | |
// This is an example of using a custom uniform in a shader. | |
// | |
// 2024-07-20 Sat | |
// Dov Grobgeld <[email protected]> | |
//---------------------------------------------------------------------- | |
#include <vsgXchange/all.h> | |
#include <iostream> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//====================================================================== | |
// hello-picking.cpp - An example of how to select and change the | |
// color of objects created with the builder in Vulkan Scene Graph. | |
// | |
// This file is licensed under the MIT license. | |
// | |
// Dov Grobgeld <[email protected]> | |
// Tue Jul 2 21:59:01 2024 | |
//---------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//====================================================================== | |
// hello-box.cpp - Show a box with vsg viewer | |
// | |
// Extended to add keyboard interaction | |
// | |
// Dov Grobgeld <[email protected]> | |
// Sat Mar 16 23:25:06 2024 | |
//---------------------------------------------------------------------- | |
#include <vsg/all.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
###################################################################### | |
# Example of how to use ChFi2d_FilletAPI to create fillets. | |
# | |
# 2024-03-14 Thu | |
# Dov Grobgeld <[email protected]> | |
# | |
# This file is in the public domain | |
###################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
###################################################################### | |
# A proof of concept adding a svg path into a cadQuery Workspace | |
# object. | |
# | |
# This file is in the public domain. | |
# | |
# Dov Grobgeld <[email protected]> | |
# 2024-03-10 Sun |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
###################################################################### | |
# A cup holder | |
# 2024-02-10 Sat | |
# Dov Grobgeld <[email protected]> | |
# | |
# This code is in the public domain. | |
# | |
# The shower pole shampoo holder is built as follows |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun toggle-backslash-line () | |
"Toggle all forward slashes to backslashes for the current line." | |
(interactive) | |
(save-excursion | |
(if (use-region-p) | |
(setq myBoundaries (cons (region-beginning) (region-end))) | |
(setq myBoundaries (bounds-of-thing-at-point 'line))) | |
(save-restriction | |
(goto-char (car myBoundaries)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(if (string-match "x86_64-w64-mingw32" system-configuration) | |
(setq temp-dir "C:/Temp") | |
(setq temp-dir "/tmp")) | |
(defun shell-command-on-buffer (command extension) | |
"Send the current buffer to a shell command" | |
(interactive) | |
(let* ((remote-maybe (file-remote-p default-directory)) | |
(tramp-prefix (if remote-maybe remote-maybe "")) | |
(cmd-buffer-name (concat "*" (capitalize command) " Output*")) |
NewerOlder