1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// 📃 ./src/libs/cs.rs
// --- REJESTRACJA PODMODUŁÓW ---
/// 📚 【 POL】: Rdzeń konwersji pomiędzy strukturami DTO a jądrem wektorowym.
/// 📚 【 ENG】: Conversion core between DTO structures and the vector kernel.
/// 📚 【 POL】: Warstwa prezentacji i diagnostyki konsolowej (odseparowana od matematyki).
/// 📚 【 ENG】: Presentation and console diagnostics layer (separated from mathematics).
/// 📚 【 POL】: Implementacje operacji wektorowych, rzutów i transformacji geodezyjnych.
/// 📚 【 ENG】: Implementations of vector operations, projections, and geodetic transformations.
/// 📚 【 POL】: Definicja struktury bazowej `Cs<N>` oraz ograniczeń wymiarowych (trait Dim).
/// 📚 【 ENG】: Definition of the base `Cs<N>` structure and dimensional constraints (Dim trait).
/// 📚 【 POL】: Modele danych (DTO) reprezentujące punkty w różnych układach współrzędnych.
/// 📚 【 ENG】: Data models (DTO) representing points in various coordinate systems.
/// 📚 【 POL】: Narzędzia pomocnicze, w tym rozszerzenia typów do formatowania znaków.
/// 📚 【 ENG】: Utility tools, including type extensions for sign formatting.
// --- FASADA API (RE-EKSPORTY) ---
/// 📚 【 POL】: Bezpośredni dostęp do jądra obliczeniowego i aliasów typów.
/// 📚 【 ENG】: Direct access to the computational kernel and type aliases.
pub use Cs;
/// 📚 【 POL】: Globalny eksport wszystkich struktur DTO dla wygody inicjalizacji.
/// 📚 【 ENG】: Global export of all DTO structures for initialization convenience.
pub use *;
pub use ;
// --- ABSTRAKCJA ---
/// 📚 【 POL】: Eksport traitu formatowania, wymaganego dla metod takich jak `sign_sn()`.
/// 📚 【 ENG】: Export of the formatting trait, required for methods like `sign_sn()`.
pub use AbstractSignStrExt;
// --- MAKRA ---
// --- TYPY / ALIASY ---