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
| from __future__ import annotations | |
| import builtins | |
| from collections import deque | |
| from dataclasses import field as dataclass_field, Field, MISSING | |
| from logging import getLogger | |
| log = getLogger(__name__) |
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
| //__author__ = 'Aleksandr Dragunkin' | |
| //__created__= '16.01.2025' | |
| //__version__ = '0.1.00' | |
| // ------------------------------------------------------------------------------- | |
| // Name: vispanel | |
| // Purpose: Восстанавливает видимость полотна и кромки панели | |
| // Copyright: (c) GEOS 2012-2025 http://k3info.ru/ | |
| // Licence: FREE | |
| // ------------------------------------------------------------------------------ |
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
| //__author__ = 'Aleksandr Dragunkin ' | |
| //__created__= '16.01.2025' | |
| //__version__ = '0.1.00' | |
| // ------------------------------------------------------------------------------- | |
| // Name: invispanel | |
| // Purpose: гасит = переносит полотно панелей и кромку панелей с таким же PriceID, | |
| // как у у казанной панели на слой SWPanels | |
| // Copyright: (c) GEOS 2012-2025 http://k3info.ru/ | |
| // Licence: FREE | |
| // ------------------------------------------------------------------------------ |
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
| # -*- coding: utf-8 -*- | |
| from __future__ import annotations | |
| __author__ = 'Aleksandr Dragunkin' | |
| __created__= '15.01.2025' | |
| __version__ = '0.1.00' | |
| # ------------------------------------------------------------------------------- | |
| # Name: lencuts | |
| # Purpose: | |
| # Copyright: (c) GEOS 2012-2025 | |
| # Licence: FREE |
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
| #coding:utf-8 | |
| """ | |
| Author: Aleksandr Dragunkin | |
| Purpose: Расстановка крепежа по макро с 8-ю параметраами | |
| Created: 13/02/22 | |
| """ | |
| ... | |
| def main(): | |
| """""" |
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
| <link href="https://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.css" type="text/css" rel="stylesheet" /> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> | |
| </script> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.js"> | |
| </script> | |
| <script> | |
| $(document).ready(function() | |
| { | |
| $("pre").addClass("prettyprint"); | |
| prettyPrint(); |