Krita 5.2 브로셔dabs: The closer they are together, the harder the line is. By default, this is 0.1, which is a bit low. If you set it to 10 and test, you’ll see what kind of effect spacing has. The Auto checkbox changes image for computer consumption, this is the default. 120 PPI This is often used as a standard for low-quality posters. 300 PPI This is the minimum you should use for quality prints. 600 PPI The quality slowly start building up your animation. During the sketching phase it may also help to work on a low resolution, like 800×450 pixels. High resolution only starts mattering when you are doing line art0 码力 | 1531 页 | 79.11 MB | 1 年前3
PlantUML 을사용해서 UML 그리기 - PlantUML 언어참조가이드(Version 1.2023.11)
signal restricted to only 2 states clock A clocked signal that repeatedly transitions from high to low, with a period, and an optional pulse and offset concise A simplified concise signal designed to show binary • clock @startuml clock clk with period 1 binary "Enable" as EN @0 EN is low @5 EN is high @10 EN is low @enduml 10.3 Adding message You can add message using the following syntax. PlantUML as db @0 as :start @5 as :en_high @10 as :en_low @:en_high-2 as :en_highMinus2 @:start EN is low db is "0x0000" @:en_high EN is high @:en_low EN is low @:en_highMinus2 db is "0xf23a" @:en_high+6 db0 码力 | 552 页 | 7.88 MB | 1 年前3
PlantUML 을사용해서 UML 그리기 - PlantUML 언어참조가이드(Version 1.2020.23)another (can have many states). • clock: A 'clocked' signal that repeatedly transitions from high to low • binary: A specific signal restricted to only 2 states (binary). You define state change using the with period 1 binary "Enable" as EN @0 EN is low @5 EN is high PlantUML 언어참조가이드 (1.2020.23) 138 / 306 9.3 Adding message 9 TIMING DIAGRAM @10 EN is low @enduml 9.3 Adding message You can add message concise "dataBus" as db @0 as :start @5 as :en_high @10 as :en_low @:start EN is low db is "0x0000" @:en_high EN is high @:en_low EN is low @:en_high-2 db is "0xf23a" @:en_high+6 db is "0x0000" @enduml0 码力 | 307 页 | 3.16 MB | 1 年前3
PlantUML 1.2020.22 언어참조가이드another (can have many states). • clock: A 'clocked' signal that repeatedly transitions from high to low • binary: A specific signal restricted to only 2 states (binary). You define state change using the with period 1 binary "Enable" as EN @0 EN is low @5 EN is high PlantUML 언어참조가이드 (1.2020.22) 127 / 294 9.3 Adding message 9 TIMING DIAGRAM @10 EN is low @enduml 9.3 Adding message You can add message concise "dataBus" as db @0 as :start @5 as :en_high @10 as :en_low @:start EN is low db is "0x0000" @:en_high EN is high @:en_low EN is low @:en_high-2 db is "0xf23a" @:en_high+6 db is "0x0000" @enduml0 码力 | 295 页 | 3.08 MB | 1 年前3
PlantUML 1.2021.1 언어참조가이드another (can have many states). • clock: A ’clocked’ signal that repeatedly transitions from high to low • binary: A specific signal restricted to only 2 states (binary). You define state change using the with period 1 binary "Enable" as EN @0 EN is low @5 EN is high @10 PlantUML 언어참조가이드 (1.2021.1) 175 / 385 10.3 Adding message 10 TIMING DIAGRAM EN is low @enduml 10.3 Adding message You can add message concise "dataBus" as db @0 as :start @5 as :en_high @10 as :en_low @:start EN is low db is "0x0000" @:en_high EN is high @:en_low EN is low @:en_high-2 db is "0xf23a" @:en_high+6 db is "0x0000" @enduml0 码力 | 386 页 | 4.12 MB | 1 年前3
PlantUML 1.2021.2 언어참조가이드another (can have many states). • clock: A ’clocked’ signal that repeatedly transitions from high to low • binary: A specific signal restricted to only 2 states (binary). You define state change using the with period 1 binary "Enable" as EN @0 EN is low @5 EN is high @10 PlantUML 언어참조가이드 (1.2021.2) 177 / 390 10.3 Adding message 10 TIMING DIAGRAM EN is low @enduml 10.3 Adding message You can add message concise "dataBus" as db @0 as :start @5 as :en_high @10 as :en_low @:start EN is low db is "0x0000" @:en_high EN is high @:en_low EN is low @:en_high-2 db is "0xf23a" @:en_high+6 db is "0x0000" @enduml0 码力 | 391 页 | 4.17 MB | 1 年前3
PlantUML 1.2021.3 언어참조가이드another (can have many states). • clock: A ’clocked’ signal that repeatedly transitions from high to low • binary: A specific signal restricted to only 2 states (binary). You define state change using the with period 1 binary "Enable" as EN @0 EN is low @5 EN is high @10 PlantUML 언어참조가이드 (1.2021.2) 187 / 407 10.3 Adding message 10 TIMING DIAGRAM EN is low @enduml 10.3 Adding message You can add message concise "dataBus" as db @0 as :start @5 as :en_high @10 as :en_low @:start EN is low db is "0x0000" @:en_high EN is high @:en_low EN is low @:en_high-2 db is "0xf23a" @:en_high+6 db is "0x0000" @enduml0 码力 | 408 页 | 4.32 MB | 1 年前3
Comprehensive Rust(한국어) 202412gpio0.p0_21.into_push_pull_output(Level::Low); // 핀 28 을 낮게, 핀 21 을 높게 설정하여 LED 를 켭니다. col1.set_low().unwrap(); row1.set_high().unwrap(); loop {} } • set_low 및 set_high 는 embedded_hal OutputPin 트레잇의 microbit::Board; 261 fn main() -> ! { let mut board = Board::take().unwrap(); board.display_pins.col1.set_low().unwrap(); board.display_pins.row1.set_high().unwrap(); loop {} } • 이 경우 보드 지원 크레이트는 좀 더 직관적인 이름들과 P0_010 码力 | 369 页 | 1.29 MB | 11 月前3
Comprehensive Rustgpio0.p0_21.into_push_pull_output(Level::Low); // 핀 28 을 낮게, 핀 21 을 높게 설정하여 LED 를 켭니다. col1.set_low().unwrap(); row1.set_high().unwrap(); loop {} } • set_low 및 set_high 는 embedded_hal OutputPin 트레잇의 microbit::Board; 260 fn main() -> ! { let mut board = Board::take().unwrap(); board.display_pins.col1.set_low().unwrap(); board.display_pins.row1.set_high().unwrap(); loop {} } • 이 경우 보드 지원 크레이트는 좀 더 직관적인 이름들과 P0_01> = pin_input .into_open_drain_output(OpenDrainConfig::Disconnect0Standard1, Level::Low); pin_output.set_high().unwrap(); // pin_input.is_high(); // 오류가 발생하여 이동했습니다. let _pin2: P0_02 > 0 码力 | 368 页 | 1.29 MB | 1 年前3
共 9 条
- 1













