This file contains hidden or 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
1) Polilinijų brėžimas | |
2) Juostinis ornamentas su užpildymas | |
3) Komandos offset naudojimas | |
4) (Centrinis) Ornamentas naudojant array | |
5) Projekcijos iš aksonomentrinio vaizdo | |
6) ( Sudėtingesnis ) Projekcijos iš aksonomentrinio vaizdo | |
7) Trečios projekcijos radimas |
This file contains hidden or 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
Nebus | |
17 | |
18 | |
23-28 |
This file contains hidden or 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
Nuotolinė aplinka: vma.ik.su.lt |
This file contains hidden or 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
Dirbtiniai neuronų tinklai, jų sandara, paskirtins, taikymai. | |
Vienasluoksnis ir daugiasluoksnis perceptronas. Neuronų tiklų sudėtingumas. |
This file contains hidden or 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
var fmt = function () { | |
var append = function(text,append){ | |
if($.isArray(text)) | |
for(var i = 0; i < text.length; i++) | |
text[i] = text[i] + append; | |
else | |
text = text + append; | |
return text; | |
}, |
This file contains hidden or 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
Application::App...{ | |
*** | |
m_fileSystem = new FileSystem(m_appContext, argv); | |
m_settingsManager = new SettingsManager(m_appContext); // gets FS pointer through app ctx. | |
*** | |
} | |
#################################### | |
MyApplication::Init...{ |
This file contains hidden or 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
for li in fac.loop_indices: | |
file.write("+t %g %g\n" % (uv_layer[li].uv.x, uv_layer[li].uv.y)) |
This file contains hidden or 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
Interesting design of state preserving/clearing | |
https://libcinder.org/docs/reference/opengl.html |
This file contains hidden or 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
Basic | |
====== | |
[Shift]+[Mod]+[Enter] - launch terminal. | |
[Mod]+[b] - show/hide bar. | |
[Mod]+[p] - dmenu for running programs like the x-www-browser. | |
[Mod]+[Enter] - toggles windows between master and stack. | |
[Shift]+[Mod]+[2] - to move window to the 2 tag. |
This file contains hidden or 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
// Example program | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <type_traits> | |
struct point | |
{ | |
float x, y, z; | |
}; |
OlderNewer