Rendering the Gcode image too small

Hello,
The rendering of my G-code parts when they are loaded are very small to the point that for some parts I can not distinguish the differences, is it possible to have the parts centered and zoom on the rendering for a correct display ? Is there a setting ?
Here is the rendering of my pieces:



Comments

  • Have you already updated to 0.92.0 - there we changed size computation. Also if you have extrusion outside object which i can not see, it would decrease size to include that. Therefore you could exclude these parts by puttinh that part inside @nosize and @size
  • Repetier said:
    Have you already updated to 0.92.0 - there we changed size computation. Also if you have extrusion outside object which i can not see, it would decrease size to include that. Therefore you could exclude these parts by puttinh that part inside @nosize and @size
    Hello and thank you for your answer
    Yes I made the update 0.92.0 and I have no other extrusion on the board.
    On the other hand with Prusa Slicer basic profiles there is an "intro line" in front of the board before starting printing:

    M115 U3.7.2; tell printer latest fw version
    G90; use absolute coordinates
    M83; extrude relative mode
    M104 S [first_layer_temperature]; set extruder temp
    M140 S [first_layer_bed_temperature]; set bed temp
    M190 S [first_layer_bed_temperature]; wait for bed temp
    M109 S [first_layer_temperature]; wait for extruder temp
    G28 W; home all without mesh bed
    G80; mesh bed leveling
    G1 Y-3.0 F1000.0; go outside print area
    G92 E0.0
    G1 X60.0 E9.0 F1000.0; intro line
    G1 X100.0 E12.5 F1000.0; intro line
    G92 E0.0
    M221 S {if layer_height <0.075} 100 {else} 95 {endif}

    Do you think the problem comes from there?
    If so, could you help us change the beginning G-code because I do not understand your comment on @nosize and @size

    Thanks for your help  :)

  • I had this same problem.  Try this instead.

    M115 U3.7.2; tell printer latest fw version
    G90; use absolute coordinates
    M83; extrude relative mode
    M104 S [first_layer_temperature]; set extruder temp
    M140 S [first_layer_bed_temperature]; set bed temp
    M190 S [first_layer_bed_temperature]; wait for bed temp
    M109 S [first_layer_temperature]; wait for extruder temp
    G28 W; home all without mesh bed
    G80; mesh bed leveling
    @nosize
    G1 Y-3.0 F1000.0; go outside print area
    G92 E0.0
    G1 X60.0 E9.0 F1000.0; intro line
    G1 X100.0 E12.5 F1000.0; intro line
    @size
    G92 E0.0
    M221 S {if layer_height <0.075} 100 {else} 95 {endif}

  • cosmith71 said:
    I had this same problem.  Try this instead.

    M115 U3.7.2; tell printer latest fw version
    G90; use absolute coordinates
    M83; extrude relative mode
    M104 S [first_layer_temperature]; set extruder temp
    M140 S [first_layer_bed_temperature]; set bed temp
    M190 S [first_layer_bed_temperature]; wait for bed temp
    M109 S [first_layer_temperature]; wait for extruder temp
    G28 W; home all without mesh bed
    G80; mesh bed leveling
    @nosize
    G1 Y-3.0 F1000.0; go outside print area
    G92 E0.0
    G1 X60.0 E9.0 F1000.0; intro line
    G1 X100.0 E12.5 F1000.0; intro line
    @size
    G92 E0.0
    M221 S {if layer_height <0.075} 100 {else} 95 {endif}


    Repetier said:
    Have you already updated to 0.92.0 - there we changed size computation. Also if you have extrusion outside object which i can not see, it would decrease size to include that. Therefore you could exclude these parts by puttinh that part inside @nosize and @size
    Perfect <span>:smile:</span> TKs !
  • cosmith71 said:
    I had this same problem.  Try this instead.

    M115 U3.7.2; tell printer latest fw version
    G90; use absolute coordinates
    M83; extrude relative mode
    M104 S [first_layer_temperature]; set extruder temp
    M140 S [first_layer_bed_temperature]; set bed temp
    M190 S [first_layer_bed_temperature]; wait for bed temp
    M109 S [first_layer_temperature]; wait for extruder temp
    G28 W; home all without mesh bed
    G80; mesh bed leveling
    @nosize
    G1 Y-3.0 F1000.0; go outside print area
    G92 E0.0
    G1 X60.0 E9.0 F1000.0; intro line
    G1 X100.0 E12.5 F1000.0; intro line
    @size
    G92 E0.0
    M221 S {if layer_height <0.075} 100 {else} 95 {endif}

    brilliant thanks, just what I was after. 
Sign In or Register to comment.