Skip to content
Snippets Groups Projects
Select Git revision
  • 9503103952831a39a044bd12c3e74fbff9f2a991
  • master default protected
  • develop
  • v0.5
  • v0.4b
  • v0.3b
  • v0.2b
  • v0.1b
8 results

SetDpiScale.m

Blame
  • SetDpiScale.m 341 B
    % SetDpiScale - This sets the amount to enlarge each window pixel (larger scale percentages improve render speed but can blur the rendering).
    %    Viewer.SetDpiScale(scalePct)
    %    	ScalePct - The percentage to 'enlarge' each pixel in the window (default 150%).
    function SetDpiScale(scalePct)
        D3d.Viewer.Mex('SetDpiScale',scalePct);
    end